-
Notifications
You must be signed in to change notification settings - Fork 1
/
sign-up.html
121 lines (103 loc) · 4.29 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#ffffff">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen">
<link rel="shortcut icon" href="#">
<link rel="manifest" href="/manifest.json">
<title>FinHit</title>
</head>
<body class="worldwide-bg">
<!-- Loading Container Start -->
<div class="d-flex flex-column justify-content-center align-items-center w-100 h-100" id="load">
<div class="preload-image mb-4">
<img src="img/icons/worldwide-coverage.svg" class="rot" alt="World Icon">
</div>
<div class="please-wait-text">
<div class="primary-text">
Please Wait
</div>
<div class="secondary-text">
We are working on your task
</div>
</div>
</div>
<!-- Loading Container End -->
<!-- Header Start -->
<!-- <div class="main-header w-100">
<div class="top-row d-flex justify-content-between align-items-center">
<div class="time">
<img src="img/icons/i-phone-x-overrides-time-black.svg" alt="">
</div>
<div class="mobile-info-icons">
<img src="img/icons/phone-icons.svg" alt="phone-icons">
</div>
</div>
</div> -->
<!-- Header End -->
<div class="main-content h-100">
<!-- All Content Start -->
<div class="content-padding h-100 d-flex flex-column justify-content-center min-600">
<!-- Logo FinHit Start -->
<div class="text-center d-flexjustify-content-center align-items-center mt-auto">
<img src="img/big_logo.svg" alt="FinHit Logo">
<!-- Slogan Start -->
<div class="slogan text-center">Certe, inquam, pertinax non intellegamus, tu paulo ante cum memoriter, tum etiam erga nos causae.</div>
<!-- Slogan End -->
</div>
<!-- Logo FinHit End -->
<!-- Sign Up Form Start -->
<form class="sing-up-form">
<!-- Form Field Start -->
<div>
<input class="form-control" type="text" autocomplete="off" name="name_last_name" placeholder="Name, Lastname">
</div>
<!-- Form Field End -->
<!-- Form Field Start -->
<div>
<input class="form-control" type="email" autocomplete="off" name="email" placeholder="E-mail">
</div>
<!-- Form Field End -->
<!-- Form Field Start -->
<div>
<input class="form-control" type="password" autocomplete="off" name="password" placeholder="Password">
</div>
<!-- Form Field End -->
<!-- Form Field Start -->
<div>
<input class="form-control" type="password" autocomplete="off" name="confirm_password" placeholder="Confirm Password">
</div>
<!-- Form Field End -->
</form>
<!-- Sign Up Form End -->
<!-- Registration Row Start -->
<div class="d-flex justify-content-between align-items-center w-100 mt-2 registration-row">
<div>
Have account? <a href="sign-in.html" class="text-underline">Sign In</a>
</div>
<i><a href="forgot-password.html">Forgot Password?</a></i>
</div>
<!-- Registration Row End -->
<!-- Sign In Button Start -->
<a href="sms-verification.html" class="btn btn-light">Sign Up</a>
<!-- Sign In Button End -->
<!-- Copyright Block Start -->
<div class="copyright-block text-center mt-auto">
Copyright © <span>Fin</span><span>Hit</span> 2021. All Rights Reserved.
</div>
<!-- Copyright Block End -->
</div>
<!-- All Content End -->
</div>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery-3.4.1.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>