-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
40 lines (37 loc) · 1.41 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<title>User Profile</title>
</head>
<body>
<div class="container">
<div id="spinner">
<div class="d-flex justify-content-center">
<div class="spinner-border loader" style="height: 150px; width: 150px;" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
</div>
<div class="d-flex justify-content-center">
<div class="card text-center content" id="profile-content" style="width: 28rem;">
<div class="card-body">
<h1>User Dashboard</h1>
<h5 class="card-title" id="name"></h5>
<p class="card-text" id="email"></p>
</div>
<button id="logout" class="btn btn-warning">Logout</button>
</div>
</div>
</div>
<script src="app.js" type="module"></script>
<script src="firebase.js" type="module"></script>
</body>
</html>