-
Notifications
You must be signed in to change notification settings - Fork 1
/
signin.html
53 lines (50 loc) · 2.02 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
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=div, initial-scale=1.0">
<title>Sign In | Pluralsight</title>
<link rel="stylesheet" href="./css/signin.css">
</head>
<body>
<div id="signin">
<div id="left">
<div id="left-signin">
<div id="logo">
<img src="https://app.pluralsight.com/id/img/login-logo.png" alt="PluralLogo">
</div>
<form action="">
<label for="username">Email or Username</label>
<input type="text" id="username">
<label for="password">Password</label>
<input type="password" id="password">
<input type="submit" id="submit" value="Sign in">
</form>
<h4 id="forgot">Forgot password?</h4>
<h4 id="company">Sign in with company or school</h4>
<hr>
<center><a href="./pricing.html"><button id="createNew" >Create an account</button></a></center>
</div>
<footer id="footer">
Copyright © 2004 - 2022 Pluralsight LLC. All rights reserved.
<div>
<a href="https://www.pluralsight.com/terms">Terms of Use</a>
| <a href="https://www.pluralsight.com/privacy">Privacy Policy</a>
</div>
</footer>
</div>
<div id="right">
<div id="img1">
<img src="https://www.pluralsight.com/content/dam/pluralsight2/login/login-h1.png" alt="">
</div>
<div id="img2">
<button id="tryforfree">Try for free</button>
</div>
<div id="img3">
<img src="https://www.pluralsight.com/content/dam/pluralsight2/logos/logo-build-better.png" alt="">
</div>
</div>
</div>
</body>
</html>