-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsignup.html
32 lines (32 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup</title>
<link href='https://fonts.googleapis.com/css?family=Ubuntu:500' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Inter' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<link rel="stylesheet" type="text/css" href="signup.css">
</head>
<body>
<div class="container">
<img class="bottom" src="imgs/signup5.png">
<div class="login-form">
<h5>Username:</h5>
<input type="text" placeholder="Username"/><br>
<h5>Email:</h5>
<input type="text" placeholder="Email"/>
<br>
<h5>Password:</h5>
<input type="password" placeholder="Password"/>
<br>
<h5>Confirm Password:</h5>
<input type="password" placeholder="Confirm Password"/>
<br>
<input type="button" value="Create Account" class="login-button" onclick="location.href='./register.html'"/>
<h3>Already have an account? <a class="login" href="./signin.html" > Log in </a></h3>
</div>
<img class="top" src="imgs/signup.png">
</body>
</html>