-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignUp.html
39 lines (35 loc) · 1.34 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="SignUp.css">
</head>
<body>
<div class="nav-container">
<div class="wrapper">
<nav>
<div class="logo">
<a href="Home.html">
<img src="/Big logo 1.svg" alt="logo">
</a>
</div>
</nav>
</div>
</div>
<img src="/back.svg" alt="" class="back">
<div class="signupform">
<form action="" method="">
<h2 class="header">Register</h2>
<h4 class="c1">Start your cooking journey with mouth watering dishes!</h4>
<input type="email" name="email" class="input-box1" placeholder="E-Mail"><br>
<input type="text" class="input-box2" placeholder="Username"><br>
<input type="password" name="password" class="input-box3" placeholder="Password"><br>
<input type="password" name="password" class="input-box4" placeholder="Confirm Password"><br>
<button type="submit" class="signup-btn">Sign up</button>
</div>
</form>
</body>
</html>