-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
34 lines (31 loc) · 937 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
28
29
30
31
32
33
34
<!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>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<div class="icon">
<a href="index.html"> Mi Rent</a>
</div>
<div class="auth_option">
<a href="login.html">Login</a>
</div>
</nav>
<div class="login_compo">
<h3>Sign Up</h3>
<form action="" class="login_form">
<input type="text" name="" id="" placeholder="Username">
<input type="password" name="" id="" placeholder="Password">
<input type="submit" value="Sign Up">
</form>
<p class="no_account">
I already have an account, <a href="login.html">Login</a>
</p>
</div>
</body>
</html>