-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo1.html
58 lines (58 loc) · 1.94 KB
/
demo1.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
<!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">
<link rel="stylesheet" href="demo1.css">
<title>Login form</title>
</head>
<body>
<div id="wrapper">
<div id="left">
<div id="signin">
<div class="logo">
<img src="https://image.ibb.co/hW1YHq/login-logo.png" alt="Sluralpright" />
</div>
<form>
<div>
<label>Email or username</label>
<input type="text" class="text-input" />
</div>
<div>
<label>Password</label>
<input type="password" class="text-input" />
</div>
<button type="submit" class="primary-btn">Sign In</button>
</form>
<div class="links">
<a href="#">Forgot Password</a>
<a href="#">Sign in with company or school</a>
</div>
<div class="or">
<hr class="bar" />
<span>OR</span>
<hr class="bar" />
</div>
<a href="#" class="secondary-btn">Create an account</a>
</div>
<footer id="main-footer">
<p>Copyright © 2018, Sluralpright All Rights Reserved</p>
<div>
<a href="#">terms of use</a> | <a href="#">Privacy Policy</a>
</div>
</footer>
</div>
<div id="right">
<div id="showcase">
<div class="showcase-content">
<h1 class="showcase-text">
Let's create the future <strong>together</strong>
</h1>
<a href="#" class="secondary-btn">Start a FREE 10-day trial</a>
</div>
</div>
</div>
</div>
</body>
</html>