-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.html
31 lines (29 loc) · 1.01 KB
/
admin.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
<!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="admin.css">
<title>Admin</title>
</head>
<body>
<div class="admin">
<h1>Admin creation screen</h1>
<div class="inputs">
<input type="text" name="title" placeholder="title" class="input">
<input type="text" name="short-description" placeholder="description short" class="input">
<input type="text" name="long-description" placeholder="description long" class="input">
<input type="time" name="time" placeholder="time" class="input">
<input type="file" name="image" placeholder="image" class="input">
<select name="group" class="input">
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
<option value="d">d</option>
</select>
<button class="create">Create</button>
</div>
</div>
<button class="logout">Logout</button>
</body>
</html>