-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminroom.php
More file actions
55 lines (55 loc) · 1.95 KB
/
adminroom.php
File metadata and controls
55 lines (55 loc) · 1.95 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
<?php
session_start();
if (isset($_SESSION['name'])) :?>
<form method='post' action='admin.php'>
<input type='submit' name='logout' value='Logout'>
</form>
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<link href='style.css' rel='stylesheet'>
<title>Админка</title>
</head>
<body>
<a href = 'index.php'> Подтвердить оплату билета </a></br>
<a href = 'parol_change.php'> Поменять пароль </a>
<header>
<h1>Создание концерта</h1>
</header>
<form method='post' action='CreateEvent.php' enctype='multipart/form-data'>
<table cellpadding='14'>
<tr>
<td rowspan='6'>
<p><input style='height: 30px; width: 400px' type='text' name='name_event' placeholder='Название концерта' maxlength='200' required /></p>
<textarea style='height: 150px; width: 400px' name='description' placeholder='Описание концерта' maxlength='10000' required ></textarea>
<p>Загрузить картинку <input type='file' accept='image/jpeg' name='downimg'/></p>
</td>
<td>Дата и время</br><input type='date' name='date' placeholder='дата' required /><input type='time' name='time' placeholder='дата' required /></td>
</tr>
<tr>
<td><input type='number' name='ticket_low' placeholder='билеты от ' required /></td>
</tr>
<tr>
<td><input type='number' name='ticket_mid' placeholder='билеты средней цены' required /></td>
</tr>
<tr>
<td><input type='number' name='ticket_high' placeholder='билеты до' required /></td>
</tr>
<tr>
<td>
<input type='submit' name='relize' value='Создать'/>
</td>
</tr>
<tr>
<td>
<input type='reset' name='relize' value='Сбросить'/>
</td>
</tr>
</table>
</form>
</body>
</html>
<?else:?>
<p>Страница недоступна <p>
<?endif;?>