-
Notifications
You must be signed in to change notification settings - Fork 0
/
signin.html
47 lines (40 loc) · 1.79 KB
/
signin.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
<!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>Sign In | Pluralsight</title>
<link rel="stylesheet" href="signin.css">
<link rel="icon" type="image/png" href="https://www.pluralsight.com/etc.clientlibs/pluralsight/clientlibs/clientlib-main/resources/images/favicons/favicon-32x32.png" sizes="32x32">
</head>
<body>
<div id="container">
<div id="left">
<div id="logo"> <img src="https://app.pluralsight.com/id/img/login-logo.png" alt=""></div>
<form id="form">
<label class="lable" for="">Email or Username</label><br/>
<input type="email" id="email"><br>
<label for="" class="lable">Password</label><br>
<input type="password" id="password"><br>
<input type="submit" id="submit" value="Sign In">
</form>
<div id="mid">
<p>Forgot password?</p>
<p>
Sign in with company or school
</p>
<hr id="bar" size="1px";>
<button><a href="signup.html">Create Account</a></button>
</div>
</div>
<div id="right">
<div id="img"><img src="https://www.pluralsight.com/content/dam/pluralsight2/login/login-h1.png
" alt=""></div>
<div id="bright"><img src="https://www.pluralsight.com/content/dam/pluralsight2/logos/logo-build-better.png" alt=""></div>
<button id="free"><a href="signup.html">Try for free</a> </button>
</div>
</div>
</body>
</html>
<script src="signin.js"></script>