-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
27 lines (25 loc) · 870 Bytes
/
signup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script src="javascript/nav.js" defer></script>
<link rel="stylesheet" href="css/sign-up.css">
<title>Sign-Up-Form</title>
</head>
<body>
<div id="rootVegetables"></div>
<form action="">
<h2 style="text-align: center;">Sign-Up</h2>
<label for="">Name:</label>
<input name="name" id="name" placeholder="jhone doe" required>
<label for="">Email:</label>
<input type="email" name="email" id="email" placeholder="ex. [email protected]" required>
<label for="">Password:</label>
<input type="password" name="password" id="password" placeholder="Password..." required>
<input type="submit" value="Sign Up">
</form>
<script>
</script>
</body>
</html>