-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
63 lines (57 loc) · 2.26 KB
/
login.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
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>skillify - password lost</title>
<link rel="stylesheet" href="assets/css/app.css">
</head>
<body class="bg-violet bg-illustration " style="background-image: url('assets/images/login-page.png')">
<div class="container-left bg-white">
<div class="toolbar">
<span class="title text-primary"> <span class="text-quaternary"> & </span>jphNovitz</span>
<a href="register.html" class="btn btn-basic">Register</a>
</div>
<section id="register">
<h1>Log in to your account</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus earum provident quod.</p>
<form action="index.html">
<div class="form-row">
<label for="first_name">First Name</label>
<input type="first_name" name="first_name"/>
</div>
<div class="form-row">
<label for="password">Password</label>
<input type="password" name="password"/>
</div>
<div class="form-row-horizontal margin-1 size-1">
<div>
<input type="checkbox" id="agree" name="agree">
<label for="agree" class="no-margin">Remember me</label>
</div>
<div class="">
<a href="forgot-password.html">Forgot password ?</a>
</div>
</div>
<div class="form-row">
<input type="submit" class="bg-primary" value="Sign In">
</div>
</form>
<aside class="margin-v-1">
<div class="social-connect">
<div class="social-connect-item">
<span class="button google">Sign up with</span>
</div>
<div class="social-connect-item">
<span class="button facebook">Sign up with</span>
</div>
</div>
</aside>
</section>
</div>
<div class="decoration-up"></div>
<div class="decoration-down"></div>
</body>
</html>