-
Notifications
You must be signed in to change notification settings - Fork 0
/
login authentication.html
71 lines (59 loc) · 2.34 KB
/
login authentication.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="styled.css">
<script defer src="scripted.js"></script>
<html defer src="new.html"></html>
</head>
<body>
<main id="main-holder">
<style>
.avatar {
vertical-align: middle;
width: 50px;
height: 50px;
border-radius: 50%;
}
</style>
</head>
<body>
<h1 id="login-header">Login</h1>
<img src="https://t4.ftcdn.net/jpg/02/45/28/13/360_F_245281310_8MM6MbrHRvlsViICuhg6Lk1odT3QLBPK.jpg" alt="Avatar" class="avatar" >
<img src="https://www.shutterstock.com/image-vector/avatar-girls-icon-vector-woman-260nw-433429546.jpg" alt="Avatar" class="avatar">
</body>
<div id="container">
<div id="tabs">
<p id="lt" class="tabs" onclick="loginTabFun()">Log in</p>
<p id="rt" class="tabs" onclick="regTabFun()">Register</p>
<div id="clear"></div>
</div>
<div id="cont">
<div id="login" class="comm">
<h3>Sign in</h3>
<input id="se" type="email" placeholder="Email" required/>
<input id="sp" type="password" placeholder="Password" required/>
<input type="submit" onclick="login()" value="Submit"/>
<p onclick="forTabFun()">Forget Password?</p>
</div>
<div id="register" class="comm">
<h3>Register</h3>
<input id="re" type="email" placeholder="Email" required/>
<input id="rp" type="password" placeholder="Password" required/>
<input id="rrp" type="password" placeholder="Re write Password" required/>
<input type="submit" onclick="register()" value="Submit"/>
</div >
<div id="forgot" class="comm">
<h3>Forgot Password</h3>
<div>
<input id="fe" type="email" placeholder="Email" required/>
<input type="submit" onclick="forgot()" value="Submit"/>
</div>
</div>
</div>
</div>
</main>
</body>
</html>