-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
86 lines (83 loc) · 4.64 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--favicon-->
<link rel="icon" href="favicon/favicon-orange.png" type="image/png">
<!--bootstrap framework-->
<link rel="stylesheet" href="css/frameworks/bootstrap.css">
<!--fontawosome library-->
<link rel="stylesheet" href="css/libraries/all.min.css">
<!--signup css file-->
<link rel="stylesheet" href="css/pages/signup.css">
<!--fasthelpers framework-->
<link rel="stylesheet" href="css/frameworks/fasthelpers.css">
<!--themes-->
<link rel="stylesheet" href="css/themes/orange-default-theme.css">
<!--google fonts "cairo"-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Cairo:wght@700&display=swap">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<title>Firebeta | Signup</title>
</head>
<body>
<h1 class="text-center"><img alt="logo"><a href="index.html" class="cursor white-color">Firebeta</a></h1>
<!--Start Signup Box-->
<div class="container">
<div class="row">
<div class="col-lg-6 col-lg-offset-3 col-md-8 col-md-offset-2 col-sm-10 col-sm-offset-1 col-xs-12">
<div class="signup-box text-center white-bg radius padding shadow margin-bt">
<div class="head">
<h3 class="dark-grey margin-bt">Sign up</h3>
<div class="social">
<ul class="list-unstyled">
<a href="#"><li><i class="fab fa-facebook-f fa-2x white-color cursor radius shadow padding"></i></li></a>
<a href="#"><li><i class="fab fa-twitter fa-2x white-color cursor radius shadow padding"></i></li></a>
<a href="#"><li><i class="fab fa-google-plus-g fa-2x white-color cursor radius shadow padding"></i></li></a>
<a href="#"><li><i class="fab fa-github fa-2x white-color cursor radius shadow padding"></i></li></a>
</ul>
</div>
</div>
<hr>
<span class="grey white-bg">OR</span>
<div class="signup-form">
<form>
<input type="text" name="fname" class="form-control margin-bt input-lg border" placeholder="First Name" required>
<input type="text" name="lname" class="form-control margin-bt input-lg border" placeholder="Last Name" required>
<input type="email" name="email" class="form-control margin-bt input-lg border" placeholder="Email" required>
<input type="password" name="pass" class="form-control margin-bt input-lg border" placeholder="Password" required>
<input type="password" name="confirm_pass" class="form-control margin-bt input-lg border" placeholder="Confirm Password" required>
<input type="checkbox" id="check" name="check" class="margin-bt" required><label for="check" class="margin-bt"><a href="terms.html" class="dark-grey underline">Agree Our Terms</a></label>
<input type="submit" class="btn btn-lg theme-bg theme-color-hvr white-color white-bg-hvr transition border margin-bt" value="Sign up">
</form>
</div>
</div>
</div>
</div>
</div>
<!--End Signup Box-->
<div class="container margin-bt">
<h4 class="text-center"><a href="login.html" class="white-color underline">Already Member with us ? Login Now!</a></h4>
</div>
<!-- jQuery Library-->
<script src="js/libraries/jquery.min.js"></script>
<!--Bootstrap Framework -->
<script src="js/frameworks/bootstrap.min.js"></script>
<!--Nice Scroll Plugin-->
<script src="js/plugins/nicescroll.min.js"></script>
<script src="js/plugins/nicescroll_edit.js"></script>
<!--Js Files-->
<!--team signup file-->
<script src="js/pages/signup.js"></script>
<!--favicon-->
<script src="js/components/favicon.js"></script>
<!--features-->
<script src="js/features/features.js"></script>
</body>
</html>