-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
103 lines (103 loc) · 4.8 KB
/
index.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="github.com/aldi" />
<meta name="description" content="Free Bulma Login Template, part of Awesome Bulma Templates" />
<meta name="keywords" content="bulma, login, page, website, template, free, awesome" />
<link rel="canonical" href="https://aldi.github.io/bulma-login-template/" />
<title>Bulma Login - Free Bulma Template</title>
<link rel="preconnect" href="https://fonts.googleapis.com https://fonts.gstatic.com" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1/css/bulma.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma-social@2/css/all.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/all.min.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<section class="hero is-fullheight">
<div class="hero-body">
<div class="container has-text-centered">
<div class="column is-4 is-offset-4">
<div class="box p-6 mb-0">
<p class="subtitle is-4 pb-5">Please login to proceed</p>
<form>
<div class="field">
<p class="control has-icons-left has-icons-right">
<input class="input is-medium" type="email" placeholder="Email" />
<span class="icon is-medium is-left">
<i class="fas fa-envelope"></i>
</span>
<span class="icon is-medium is-right">
<i class="fas fa-check"></i>
</span>
</p>
</div>
<div class="field">
<p class="control has-icons-left">
<input class="input is-medium" type="password" placeholder="Password" />
<span class="icon is-small is-left">
<i class="fas fa-lock"></i>
</span>
</p>
</div>
<div class="field mb-2">
<label for="checkbox" class="checkbox has-text-weight-medium">
<input type="checkbox" id="checkbox" />
Remember me
</label>
</div>
<div class="column is-flex is-half is-offset-one-quarter">
<button class="button is-block is-info is-medium is-fullwidth has-text-weight-normal has-text-dark">
Login
</button>
</div>
<p class="subtitle is-5 mb-3">Login using Social Media</p>
<div class="buttons is-centered">
<a class="button is-medium is-facebook" href="https://facebook.com" aria-label="Login with Facebook">
<span class="icon">
<i class="fab fa-facebook-f fa-lg"></i>
</span>
</a>
<a class="button is-medium is-twitter" href="https://twitter.com" aria-label="Login with Twitter">
<span class="icon">
<i class="fab fa-twitter fa-lg"></i>
</span>
</a>
<a class="button is-medium is-github" href="https://github.com/aldi" aria-label="Login with GitHub">
<span class="icon">
<i class="fab fa-github fa-lg"></i>
</span>
</a>
</div>
</form>
</div>
<div class="column has-text-white has-text-weight-normal pb-0">
<a href="#">Sign Up</a> · <a href="#">Forgot Password</a> ·
<a href="#">Need Help?</a>
</div>
<div class="select is-small is-rounded languages">
<label for="language-select" class="sr-only">Select Language</label>
<select id="language-select">
<option selected>English</option>
<option>French</option>
<option>German</option>
<option>Italian</option>
</select>
</div>
</div>
</div>
</div>
<div class="hero-foot">
<div class="container has-text-centered">
<p class="footer-text">
<a href="https://www.aldi.st?utm_source=Github&utm_medium=bulma-login-template" className="has-text-white">
Designed with <i class="fa fa-heart fa-fw" style="font-size: 10px; color: red"></i> by aldi
</a>
</p>
</div>
</div>
</section>
</body>
</html>