-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
224 lines (213 loc) · 11.1 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags always come first -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<!-- Bootstrap CSS -->
<!-- build:css css/main.css -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="node_modules/bootstrap-social/bootstrap-social.css">
<link rel="stylesheet" href="css/styles.css">
<!-- endbuild -->
<title>LetFundMe - Digital Crowdfunding Platform</title>
</head>
<body>
<nav class="navbar navbar-dark navbar-expand-sm fixed-top">
<div class="container">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#Navbar">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand mr-auto" href="#"><span class="fa fa-cube fa-lg fa-spin"></span></a>
<div class="collapse navbar-collapse" id="Navbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link" href="./index.html"><span class="fa fa-dashboard"></span>
Home</a></li>
<li class="nav-item"><a class="nav-link" href="./browseProjects.html"><span
class="fa fa-compass"></span> Browse projects</a></li>
<li class="nav-item"><a class="nav-link" href="./howitworks.html"><span
class="fa fa-bullhorn"></span> How it works</a></li>
<li class="nav-item"><a class="nav-link" href="./aboutus.html"><span class="fa fa-coffee"></span>
About us</a></li>
<li class="nav-item active"><a class="nav-link"><span class="fa fa-life-ring"></span>
Account</a></li>
</ul>
</div>
</div>
</nav>
<header class="jumbotron">
<div class="container">
<div class="row">
<h1><span class="badge badge-dark">Sign up</span></h1>
</div>
</div>
</header>
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="col-12 text-center row-header">
<h2>Create your own Account</h2>
</div>
<div class="col-12 offset-md-2 col-md-8 feedback-body">
<form>
<div class="form-group row">
<label for="firstname" class="col-md-3 col-form-label">First Name</label>
<div class="col-md-9">
<input type="text" class="form-control" id="firstname" name="firstname"
placeholder="First Name">
</div>
</div>
<div class="form-group row">
<label for="lastname" class="col-md-3 col-form-label">Last Name</label>
<div class="col-md-9">
<input type="text" class="form-control" id="lastname" name="lastname"
placeholder="Last Name">
</div>
</div>
<div class="form-group row">
<label for="city" class="col-md-3 col-form-label">Address</label>
<div class="col-4 col-md-3">
<input type="text" class="form-control" id="city" name="city"
placeholder="City">
</div>
<div class="col-4 col-md-3">
<input type="text" class="form-control" id="state" name="state"
placeholder="State">
</div>
<div class="col-4 col-md-3">
<input type="text" class="form-control" id="province" name="province"
placeholder="Province">
</div>
</div>
<div class="form-group row">
<label for="country" class="col-md-3 col-form-label">Country</label>
<div class="col-md-9">
<input type="text" class="form-control" id="country" name="country"
placeholder="Coutry">
</div>
</div>
<div class="form-group row">
<label for="emailid" class="col-md-3 col-form-label">Email</label>
<div class="col-md-9">
<input type="email" class="form-control" id="emailid" name="emailid" placeholder="Email">
</div>
</div>
<div class="form-group row">
<label for="password" class="col-md-3 col-form-label">Account Password</label>
<div class="col-md-9">
<input type="password" class="form-control" id="password" name="password" placeholder="Password">
</div>
</div>
<div class="form-group row">
<label for="profession" class="col-md-3 col-form-label">Profession</label>
<div class="col-md-9">
<input type="text" class="form-control" id="profession" name="profession"
placeholder="Profession">
</div>
</div>
<div class="form-group row">
<label for="telnum" class="col-12 col-md-3 col-form-label">Contact Tel.</label>
<div class="col-5 col-md-3">
<input type="tel" class="form-control" id="areacode" name="areacode"
placeholder="Area Code">
</div>
<div class="col-7 col-md-6">
<input type="tel" class="form-control" id="telnum" name="telnum" placeholder="Tel. Number">
</div>
</div>
<div class="form-group row">
<div class="col-12 mt-4">
<div class="form-check">
<input type="checkbox" class="form-check-input" name="approve" id="approve" value="">
<label class="form-check-label" for="approve">
<cite>I hereby, accepting all the <strong>Terms and Condions</strong> apply regarding creation of account.</cite>
</label>
</div>
</div>
</div>
<div class="form-group row">
<div class="offset-md-3 col-md-9">
<button type="submit" class="col-md-7 btn btn-primary">
Submit
</button>
</div>
</div>
</form>
</div>
<div class="col-12 col-md">
</div>
</div>
<div class="row justify-content-end">
<div class="col-12 col-sm-5">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item"><a href="#">Browse projects</a></li>
<li class="breadcrumb-item"><a href="#">How it works</a></li>
<li class="breadcrumb-item"><a href="#">About us</a></li>
</ol>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<div class="row footer-social-links">
<div class="mr-auto">
<h5>Follow us on</h5>
</div>
<div class="ml-auto">
<a class="btn btn-social-icon btn-google" href="http://google.com/+"><i
class="fa fa-google-plus fa-lg"></i></a>
<a class="btn btn-social-icon btn-facebook" href="http://www.facebook.com/profile.php?id="><i
class="fa fa-facebook fa-lg"></i></a>
<a class="btn btn-social-icon btn-linkedin" href="http://www.linkedin.com/in/"><i
class="fa fa-linkedin fa-lg"></i></a>
<a class="btn btn-social-icon btn-twitter" href="http://twitter.com/"><i
class="fa fa-twitter fa-lg"></i></a>
<a class="btn btn-social-icon" href="mailto:"><i class="fa fa-envelope-o fa-lg"></i></a>
</div>
</div>
<div class="row text-center">
<div class="col-12 col-sm-4">
<h5><span class="fa fa-cube fa-lg fa-spin"></span> LetFundMe</h5>
<p>A digital crowdfunding platform for entrepreneurs to showcase their talents to world. It focuses
on reward-based crowdfunding which is legal in most of the countries around the world.</p>
</div>
<div class="col-6 col-sm-4">
<h5>Featured Links</h5>
<ul class="list-unstyled">
<li><a href="#">FAQs</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Account</a></li>
<li><a href="#">Feedback</a></li>
<li><a href="#">Crowdfunding</a></li>
</ul>
</div>
<div class="col-6 col-sm-4">
<h5>Head Office</h5>
<address>
121, Clear Water Bay Road<br>
Clear Water Bay, Kowloon<br>
HONG KONG<br>
<i class="fa fa-phone fa-lg"></i>: +852 1234 5678<br>
<i class="fa fa-fax fa-lg"></i>: +852 8765 4321<br>
<i class="fa fa-envelope fa-lg"></i>: <a href="mailto:letfundme@fund.net">letfundme@fund.net</a>
</address>
</div>
</div>
<div class="row justify-content-center footer-bottom">
<div class="col-auto">
<p>© Copyright 2020 LetFundMe. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<!-- jQuery first, then Popper.js, then Bootstrap JS. -->
<!-- build:js js/main.js -->
<script src="node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
<!-- endbuild -->
</body>
</html>