-
Notifications
You must be signed in to change notification settings - Fork 1
/
angelsignup.html
171 lines (171 loc) · 6.8 KB
/
angelsignup.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
<!DOCTYPE html>
<html>
<head>
<title>Borrow My Angel</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="/socket.io/socket.io.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="index.html">Borrow My Angel</a>
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link" href="donations.html">Donate</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About</a></li>
<li class="nav-item"><a class="nav-link" href="login.html">Log In</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown">Sign Up</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="pinsignup.html">...as Person in Need</a>
<a class="dropdown-item" href="angelsignup.html">...as Angel</a>
</div>
</li>
</ul>
</nav>
<br/>
<div class="container-fluid">
<div class="card">
<br/>
<h5 class="card-title">Required Info</h5>
<div class="form-group">
<label for="userName">User Name</label>
<input type="text" class="form-control" id="userName" placeholder="Username">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="text" class="form-control" id="password" placeholder="Password">
</div>
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" id="email" placeholder="[email protected]">
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="text" class="form-control" id="phone" placeholder="(xxx) xxx-xxxx">
</div>
<div class="form-group">
<label for="firstName">First Name</label>
<input type="text" class="form-control" id="firstName" placeholder="First Name">
</div>
<div class="form-group">
<label for="lastName">Last Name</label>
<input type="text" class="form-control" id="lastName" placeholder="Last Name">
</div>
<div class="form-group">
<label for="maidenName">Maiden Name</label>
<input type="text" class="form-control" id="maidenName" placeholder="Maiden Name">
</div>
</div>
<div class="form-group">
<label for="address">Address</label>
<input type="text" class="form-control" id="address" placeholder="1234 Main St">
</div>
<div class="form-group">
<label for="address2">Address 2</label>
<input type="text" class="form-control" id="address2" placeholder="Apartment, studio, or floor">
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="city">City</label>
<input type="text" class="form-control" id="city">
</div>
<div class="form-group col-md-4">
<label for="state">State</label>
<select id="state" class="form-control">
<option>AK</option>
<option>AL</option>
<option>AR</option>
<option>AZ</option>
<option>CA</option>
<option>CO</option>
<option>CT</option>
<option>DC</option>
<option>DE</option>
<option>FL</option>
<option>GA</option>
<option>HI</option>
<option>IA</option>
<option>ID</option>
<option>IL</option>
<option>IN</option>
<option>KS</option>
<option>KY</option>
<option>LA</option>
<option>MA</option>
<option>MD</option>
<option>ME</option>
<option>MI</option>
<option>MN</option>
<option>MO</option>
<option>MS</option>
<option>MT</option>
<option>NC</option>
<option>ND</option>
<option>NE</option>
<option>NH</option>
<option>NJ</option>
<option>NM</option>
<option>NV</option>
<option>NY</option>
<option>OH</option>
<option>OK</option>
<option>OR</option>
<option>PA</option>
<option>PR</option>
<option>RI</option>
<option>SC</option>
<option>SD</option>
<option>TN</option>
<option>TX</option>
<option>UT</option>
<option>VA</option>
<option>VT</option>
<option>WA</option>
<option>WI</option>
<option>WV</option>
<option>WY</option>
</select>
</div>
<div class="form-group col-md-2">
<label for="zipCode">Zip Code</label>
<input type="text" class="form-control" id="zipCode">
</div>
</div>
<div class="form-group">
<label for="references">References</label>
<textarea class="form-control" id="references" rows="3"></textarea>
</div>
<div class="form-group">
<label for="reason">Reasons for wanting to become an Angel</label>
<textarea class="form-control" id="reason" rows="3"></textarea>
</div>
<div class="form-group">
<label for="crisisExperience">Previous Crisis Experience</label>
<textarea class="form-control" id="crisisExperience" rows="3"></textarea>
</div>
<div class="form-group">
<label for="volunteerExperience">Previous Volunteer Experience</label>
<textarea class="form-control" id="volunteerExperience" rows="3"></textarea>
</div>
<div class="form-group">
<label for="criminalHistory">Criminal History</label>
<textarea class="form-control" id="criminalHistory" rows="3"></textarea>
</div>
<div class="form-group form-check">
<input type="checkbox" class="form-check-input" id="backgroundCheck">
<label class="form-check-label" for="backgroundCheck">By checking this box you agree to allow Borrow My Angel to perform a background check</label>
</div>
<div class="form-group form-check">
<input type="checkbox" class="form-check-input" id="legalDiscaimer">
<label class="form-check-label" for="legalDisclaimer">By checking this box you agree to the <a href="#">Terms of Service</a></label>
</div>
<p id="sendInfo" class="btn btn-primary">Sign Up</p>
</div>
</div>
<script src="angelsignup.js"></script>
</body>
</html>