-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.htm
27 lines (26 loc) · 1.03 KB
/
signup.htm
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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign up-page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="landing.css">
</head>
<body class="bdys">
<div class="Signup">
<h1>Hey New User</h1>
<h3>Here's the way to explore your crave!</h3> <br>
<form class="signform">
<input type="text" placeholder="Name" required> <br>
<input type="email" placeholder="Email" required> <br>
<input type="password" placeholder="Password" required>
</form> <br>
<button class="btn-sign">Create Account</button> <br><br>
<p class="or"> or </p> <br><br>
<i class="fa-brands fa-google gg"></i>
<i class="fa-brands fa-facebook-f fb"></i>
<p>Already have an account <a href="login.html">login</a> </p>
</div>
</body>
</html>