-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.html
More file actions
32 lines (26 loc) · 1.11 KB
/
user.html
File metadata and controls
32 lines (26 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Profile Page</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="" />
<link rel="icon" href="favicon.png">
</head>
<body>
<button onclick="window.location.href = 'index.html';"
style="background-color: orange; width: 100px; height: 60px; border-radius: 10px;">←
Home</button>
<h1>Profile</h1>
<div id="signedin" style="position:absolute; top: 35px; right: 35px;"></div>
First name: <input type="text" name="fname" id="fname"><br><br>
Last name: <input type="text" name="lname" id="lname"><br><br>
Email: <input type="text" name="email" id="email"><br><br>
Cell Phone Number: <input type="text" name="phone" id="phone"><br><br>
Hours Available: <input type="text" name="hours" id="hours"><br><br>
Address: <input type="text" name="address" id="address"><br><br>
<button style="background-color: green; width: 100px; height: 40px; border-radius: 10px;"
id="updatebtn">Update</button>
</body>
</html>
<script type="module" src="./firebaseuser.js"></script>