-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsign-up.html
107 lines (91 loc) · 5.41 KB
/
sign-up.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
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Page Title -->
<title>Sign Up | Spyre - Slick contemporary multipurpose theme</title>
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="../assets/img/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../assets/img/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../assets/img/favicons/favicon-16x16.png">
<link rel="manifest" href="../assets/img/favicons/site.webmanifest">
<link rel="mask-icon" href="../assets/img/favicons/safari-pinned-tab.svg" color="#f23838">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Vendor Stylesheets -->
<link href="https://fonts.googleapis.com/css?family=Oswald:300,400,500,700%7CRoboto:300,400,700" rel="stylesheet">
<link href="../assets/vendor/material-design-iconic-font/dist/css/material-design-iconic-font.min.css" rel="stylesheet">
<!-- Theme Stylesheets -->
<link href="../assets/css/theme.css" rel="stylesheet">
</head>
<body>
<!-- Preloader -->
<div class="preloader">
<div class="spinner">
<div class="circles"></div>
</div>
</div>
<!-- End of Preloader -->
<!-- Header -->
<header class="spyre-navbar navbar navbar-expand-lg fixed-top" style="background: none;">
<div class="container">
<a class="navbar-brand mr-lg-5 mr-xl-7" href="../pages/index.html">
<img src="../assets/img/logo.svg" class="d-none d-lg-block" alt="Spyre" width="183" />
<img src="../assets/img/logo.svg" class="d-block d-lg-none" alt="Spyre" width="150" />
</a>
</div>
</header>
<!-- End of Header -->
<!-- Main Content -->
<main class="main minh-100vh">
<!-- Section -->
<section class="py-0">
<div class="container-fluid">
<div class="row">
<div class="col-lg-6 order-lg-2">
<div class="row minh-100vh h-100 align-items-center">
<form class="col px-lg-6 px-xl-8 px-xxl-11 py-9 py-lg-4">
<h1>Please sign up</h1>
<h5 class="mb-5 text-700">Fill out the form to get started</h5>
<div class="form-group mb-4">
<input type="email" class="form-control form-control-lg" id="email" placeholder="Email address">
</div>
<div class="form-group mb-4">
<input type="password" class="form-control form-control-lg" id="password" placeholder="Password">
</div>
<div class="form-group mb-4">
<input type="password" class="form-control form-control-lg" id="password-again" placeholder="Confirm Password">
</div>
<button type="button" class="btn btn-lg btn-secondary btn-block mb-4">Sign Up</button>
<p class="text-center text-600">Already have account? <a href="../pages/sign-in.html">Sign In</a></p>
<div class="mt-5 pt-5 border-top-centered-30 border-top-centered-faded">
<div class="row">
<div class="col-6">
<button type="button" class="btn btn-facebook btn-block"><i class="zmdi zmdi-facebook"></i><span class="d-none d-lg-inline ml-3">Facebook</span></button>
</div>
<div class="col-6">
<button type="button" class="btn btn-twitter btn-block"><i class="zmdi zmdi-twitter"></i><span class="d-none d-lg-inline ml-3">Twitter</span></button>
</div>
</div>
</div>
</form>
</div>
</div>
<div class="col-lg-6 order-lg-1 px-0 py-9">
<div class="bg-container overlay overlay-10" style="background-image: url(../assets/img/backgrounds/bg-13.jpg)"></div>
</div>
</div>
</div>
</section>
<!-- End of Section -->
</main>
<!-- End of Main Content -->
<!-- Core Javascripts -->
<script src="../assets/vendor/jquery/dist/jquery.min.js"></script>
<script src="../assets/vendor/popper.js/dist/umd/popper.min.js"></script>
<script src="../assets/vendor/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- Theme Javascripts -->
<script src="../assets/js/theme.js"></script>
</body>
</html>