-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
43 lines (43 loc) · 1.51 KB
/
index.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
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<title>HASH TECHIE OFFICIAL</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="orangeBG">
<div class="box signin">
<h2>Already Have An Account?</h2>
<button class="signinbtn">Sign In</button>
</div>
<div class="box signup">
<h2>Create An Account?</h2>
<button class="signupbtn">Register</button>
</div>
</div>
<div class="form-box">
<div class="form signinform">
<form >
<h3>Sign In</h3>
<input type="text" placeholder="Username">
<input type="password" placeholder="Password">
<input type="submit" value="Sign In">
<a href="#">Forget Password?</a>
</form>
</div>
<div class="form signupform">
<form >
<h3>Sign Up</h3>
<input type="text" placeholder="Username">
<input type="email" placeholder="Email Address">
<input type="password" placeholder="Password">
<input type="password" placeholder="Confirm Password">
<input type="submit" value="Sign Up">
</form>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>