-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevpage.html
More file actions
101 lines (86 loc) · 3.27 KB
/
Copy pathdevpage.html
File metadata and controls
101 lines (86 loc) · 3.27 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:wght@900&family=Oswald:wght@200..700&family=Tangerine:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/devstyle.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="js/search.js" defer></script>
<script src="js/goodscrool.js" defer></script>
<script src="js/dev.js" defer></script>
<link rel="stylesheet" href="css/adapt.css">
<link rel="icon" href="images/logo.jpg" type="image/jpg">
<title>Dev Page</title>
</head>
<body>
<header>
<button onclick="location.href='index.html'"><- Back to Home</button>
</header>
<main>
<h1>Dev Page and notes</h1>
<div id="devNotifications" style="max-width:900px;margin:12px auto 0;padding:8px;">
<!-- notifications will appear here -->
</div>
<p>Main bank-card:5168 7520 2967 2196</p>
<ul class="upd-list">
<li>Do more js features</li>
<li>Add cats</li>
<li>Make news page</li>
<li> update security lisense and read me</li>
<li>Make bot-check</li>
<li> ??? </li>
</ul>
<section id="devDashboard" class="dev-section">
<h2>Admin Dashboard</h2>
<!-- Создание / редактирование -->
<div class="dev-block">
<h3>Create / Edit User</h3>
<input type="text" id="dev_name" placeholder="User Name">
<input type="email" id="dev_email" placeholder="User Email">
<select id="dev_role">
<option value="user">User</option>
<option value="admin">Admin</option>
</select>
<button id="saveUserBtn">Save User</button>
</div>
<!-- Управление -->
<div class="dev-block">
<h3>Manage User</h3>
<select id="userSelect"></select>
<div class="dev-actions">
<button id="addPendingBtn">+ Pending</button>
<button id="subPendingBtn">- Pending</button>
<button id="addReadyBtn">+ Ready</button>
<button id="subReadyBtn">- Ready</button>
<input type="number" id="moneyAmount" placeholder="Money">
<button id="addMoneyBtn">Add Money</button>
<button id="subMoneyBtn">Subtract Money</button>
<button id="deleteUserBtn" class="danger">Delete</button>
</div>
</div>
<!-- Таблица -->
<div class="dev-block">
<h3>All Users</h3>
<table id="usersTable">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Role</th>
<th>Pending</th>
<th>Ready</th>
<th>Money</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</section>
<p> Stuff status: 2/3 active, ready to work, 3 peaple in team</p>
<p class="fornowall">For now, all</p>
</main>
</body>
</html>