-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (50 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - Gradie - tutorial</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'><link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<section class="rounded-3 overflow-hidden">
<div class="container g-0">
<div class="row g-0">
<div class="col-md-6">
<div class="d-flex flex-column bg-dark text-center h-100 pt-5 justify-content-between">
<div class="mb-5">
<div class="h1 text-white">Gradie</div>
<p class="text-white-50">Beautiful gradients in seconds.</p>
</div>
<div class="img-iphone" role="image"></div>
</div>
</div>
<div class="col-md-6">
<div class="p-5 h-100 bg-white">
<h1 class="mt-0 mb-4">Login</h1>
<div class="mb-4">
<label for="exampleInputEmail" class="form-label fw-bold">Email</label>
<input type="email" class="form-control form-control-lg" id="exampleInputEmail" placeholder="[email protected]">
</div>
<div class="mb-4">
<label for="exampleInputPassword" class="form-label fw-bold">Password</label>
<input type="password" class="form-control form-control-lg" id="exampleInputPassword" placeholder="At least 8 characters" required>
</div>
<div class="mb-5">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault" required>
<label class="form-check-label" for="flexCheckDefault">
By creating an account, you agree to the <a href="#!" class="text-dark fw-bold">Terms & Conditions</a>.
</label>
</div>
</div>
<a href="#!" class="btn btn-dark d-block btn-lg">Create an Account</a>
</div>
</div>
</div>
</section>
<!-- partial -->
<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js'></script>
</body>
</html>