-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
executable file
·89 lines (80 loc) · 3.54 KB
/
settings.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
<div class="container">
<div class="row">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><i class="fa fa-times"></i></button>
<h4 class="modal-title">Ready to Join? Create a New Account</h4>
</div>
<form action="" method="post">
<div class="modal-body">
<div class="form-group">
<label for="userEmail">Email Address</label>
<input type="text" class="form-control" required="" name="userEmail" value="">
<span class="help-block">Your email address is also used to log in.</span>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" required="" name="password" value="">
<span class="help-block">Choose a password for your new account.</span>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="passwordr">Repeat Password</label>
<input type="password" class="form-control" required="" name="passwordr" value="">
<span class="help-block">Type the password again. Passwords must match.</span>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<input type="hidden" name="isEmpty" value="">
<button type="input" name="submit" value="newAccount" class="btn btn-success btn-icon"><i class="fa fa-check"></i> Create My Account</button>
<button type="button" class="btn btn-default btn-icon" data-dismiss="modal"><i class="fa fa-times-circle"></i> Cancel</button>
</div>
</form>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><i class="fa fa-times"></i></button>
<h4 class="modal-title">Ready to Join? Create a New Account</h4>
</div>
<form action="" method="post">
<div class="modal-body">
<div class="form-group">
<label for="userEmail">Email Address</label>
<input type="text" class="form-control" required="" name="userEmail" value="">
<span class="help-block">Your email address is also used to log in.</span>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" required="" name="password" value="">
<span class="help-block">Choose a password for your new account.</span>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="passwordr">Repeat Password</label>
<input type="password" class="form-control" required="" name="passwordr" value="">
<span class="help-block">Type the password again. Passwords must match.</span>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<input type="hidden" name="isEmpty" value="">
<button type="input" name="submit" value="newAccount" class="btn btn-success btn-icon"><i class="fa fa-check"></i> Create My Account</button>
<button type="button" class="btn btn-default btn-icon" data-dismiss="modal"><i class="fa fa-times-circle"></i> Cancel</button>
</div>
</form>
</div>
</div>
</div>