-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
70 lines (64 loc) · 2.99 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
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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Al-cashier Edit Profile</title>
<link rel="stylesheet" href="./css/libraries/all.min.css">
<link rel="stylesheet" href="./css/libraries/bootstrap.rtl.min.css">
<link rel="stylesheet" href="./css/master.css">
<script src="./js/layouts/isLoggedIn.js"></script>
<script src="./js/layouts/includeHTML.js"></script>
<script>
includeHTML('./components/navbar.html', 'nav', true);
const path = 'profile';
</script>
</head>
<body id="profile" class="">
<!-- start navbar -->
<nav class="navbar p-0 sticky-top"></nav>
<!-- end navbar -->
<!-- start profile edit form -->
<section class="profile client-data d-flex align-items-center justify-content-center">
<div class="container">
<form id="profile" class="p-3 mx-auto text-center" action="./index.html">
<div class="form-input mb-3">
<label for="profile-cashier-name" class="form-label" data-i18n="name"></label>
<input id="profile-cashier-name" class="form-control shadow-none text-center" type=" text" data-from="name">
<p class="form-text my-2"></p>
</div>
<div class="form-input mb-3">
<label for="profile-cashier-phone" class="form-label" data-i18n="phone"></label>
<input id="profile-cashier-phone" class="form-control shadow-none text-center" type=" text" data-from="phone">
<p class="form-text my-2"></p>
</div>
<div class="form-input mb-3">
<label for="profile-cashier-password" class="form-label" data-i18n="password"></label>
<input id="profile-cashier-password" class="form-control shadow-none text-center" type="password"
data-from="password">
<p class="form-text my-2"></p>
</div>
<div class="form-input mb-3">
<label for="profile-cashier-newpassword" class="form-label" data-i18n="newpassword"></label>
<input id="profile-cashier-newpassword" class="form-control shadow-none text-center" type="password"
data-from="password">
<p class="form-text my-2"></p>
</div>
<div class="text-center">
<button id="profile-cashier-edit" class="rounded" data-i18n="edit" type="submit"></button>
<button id="profile-cashier-delete" class="rounded border-0" data-i18n="delete" type="button"></button>
</div>
</form>
</div>
</section>
<!-- end profile edit form -->
<script src="./js/libraries/all.min.js"></script>
<script src="./js/libraries/bootstrap.bundle.min.js"></script>
<script src="./js/libraries/i18next.umd.min.js"></script>
<script type="module" src="./js/profile.js"></script>
<script type="module" src="./js/layouts/slider.js"></script>
<script type="module" src="./js/layouts/mode.js"></script>
<script type="module" src="./js/i18n/i18next.js"></script>
<script src="./js/layouts/notification.js"></script>
</body>
</html>