-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregister.html
40 lines (36 loc) · 1.12 KB
/
register.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
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="../css/style.css">
<meta charset="UTF-8">
<title>TakeFoodHome</title>
</head>
<body>
<header>
<h1>Take Food Home</h1>
<form>
<span class="label">Username:</span><input type="text" name="username">
<span class="label">Password:</span><input type="password" name="pass">
<span id="login-buttons">
<a href="">Register</a>
<button type="submit">Login</button>
</span>
</form>
</header>
<main>
<section id="register">
<form>
Username:<input type="text" name="username">
Password:<input type="password" name="pass">
Email:<input type="email" name="email">
Phone Number: <input type="number" name="phone">
Address: <input type="text" name="address">
<input class="submit" type="submit" value="Register">
</form>
</section>
</main>
<footer>
<p>Take Food Home, 2022</p>
</footer>
</body>
</html>