-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaccount-setting.html
60 lines (49 loc) · 2.12 KB
/
account-setting.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Macky-Account-settings</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.deep_purple-light_blue.min.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="account-setting-style.css" />
</head>
<body>
<header class="main-page-bar">
<div class="logo">Macky</div>
<nav>
<ul>
<li><a href="main.html">Home</a></li>
<li><a href="account-setting.html" class="active">Account Settings</a></li>
<li><a href="all-user.html">All Users</a></li>
<button onclick="user_sign_out()">Sign Out</button>
</ul>
</nav>
<div class="menu-toggle"><i class="fa fa-bars" aria-hidden="true"></i></div>
</header>
<div class="user-img">
<img id="user-img" src="images/dp.jpg">
</div>
<div class="fields">
<div id="loader" class="mdl-spinner mdl-js-spinner is-active"></div>
<input id="user-name" type="name" placeholder="Name">
<input id="user-status" type="status" placeholder="Status">
<button id="change-details">Change Details</button>
</div>
<div class="toast">
<div id="toast-text">
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/7.15.5/firebase.js"></script>
<script src="Scripts/firebase.init.js"></script>
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<script src="account-setting.js"></script>
</body>
</html>