forked from goops17/RideSharingWebApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevPage.html
More file actions
71 lines (50 loc) · 2.62 KB
/
devPage.html
File metadata and controls
71 lines (50 loc) · 2.62 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>WSC Ride Share</title>
<meta name="description" content="An interactive getting started guide for Brackets.">
<link rel="stylesheet" href="styleSheet.css">
<link href="https://fonts.googleapis.com/css?family=Black+Ops+One" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://www.gstatic.com/firebasejs/5.9.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.9.0/firebase-firestore.js"></script>
</head>
<body>
<h1>WSC Ride Share</h1>
<div class="navBar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="requests.html">Requests</a></li>
<li><a href="managePosts.html">Manage Posts</a></li>
<li><a class="active" href="devPage.html">Dev.Page</a></li>
</ul>
</div>
<!-- Code for our input into the firestore database. -->
<!-- ATTENTION: This is where I will send information to check if the ID has been edited or not -->
<div id="secondForm">
<form>
<label for="userID">User ID</label><br>
<input type="text" id="userID" name="userID" placeholder="000000001"><br>
<label for="fName">First Name</label><br>
<input type="text" id="fName" name="fName" placeholder="John"><br>
<label for="lName">Last Name</label><br>
<input type="text" id="lName" name="lName" placeholder="Doe"><br>
<label for="mName">Middle Name</label><br>
<input type="text" id="mName" name="mName" placeholder="J.">
<br>
<label for="otherEmail">Other Email</label><br>
<input type="text" id="otherEmail" name="otherEmail" placeholder="What is another email (not school related)"><br>
<label for="password">Password</label><br>
<input type="text" id="password" name="password" placeholder="N0tAPa$$w0rd"><br>
<label for="phoneNumber">Phone Number</label><br>
<input type="text" id="phoneNumber" name="phoneNumber" placeholder="7123011111"><br>
<label for="wscEmail">Email</label><br>
<input type="text" id="wscEmail" name="wscEmail" placeholder="College Email"><br>
<input type="submit" value="Submit">
</form>
</div>
<script src="CloudFireStoreForm.js"></script>
</body>
</html>