mirror of
https://github.com/frontendnetwork/vegancheck.me
synced 2024-11-15 00:27:08 +00:00
22 lines
No EOL
494 B
HTML
22 lines
No EOL
494 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Is it Vegan?</title>
|
|
<meta charset="UTF-8">
|
|
<style></style>
|
|
<script src='js/jquery.min.js'></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="container">
|
|
<h1>VeganCheck.me</h1>
|
|
|
|
<form action="script.php">
|
|
<input type="text" id="barcode" name="barcode" placeholder="Enter Barcode">
|
|
<input type="submit" name="submit" value="Check if it is Vegan">
|
|
</form>
|
|
|
|
<div id="result"></div>
|
|
<script src="js/submit.js"></script>
|
|
</body>
|
|
</html> |