-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddEvent.php
More file actions
56 lines (48 loc) · 1.69 KB
/
Copy pathAddEvent.php
File metadata and controls
56 lines (48 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Регистрация</title>
<link rel="stylesheet" type="text/css" href="Regform2.css" />
</head>
<body>
<!--Header-->
<div class="topnav">
<a href="MyEventator.php">My Eventator</a>
<a class="active" href="AddEvent.php">Добавяне на събитие</a>
<div class="login-container">
<form action="/action_page.php">
<!-- <button type="submit">Вход</button> -->
<a href="index.php">Изход</a>
</form>
</div>
</div>
<!--Form-->
<div class="container">
<form class="form" id="form">
<h1>Създай анонимно събитие</h1>
<div class="form-control">
<input type="text" id="name" placeholder="Име на събитие">
<small>Error message</small>
</div>
<div class="form-control">
<input type="text" id="date" placeholder="Дата на събитие ">
<small>Error message</small>
</div>
<div class="form-control">
<input type="text" id="place" placeholder="Място на събитието">
<small>Error message</small>
</div>
<div class="form-control">
<input type="text" id="info" placeholder="Описнание на събитието">
<small>Error message</small>
</div>
<div class="form-control">
<button class="button" id='button'>Създай събитието!</button>
</div>
</form>
</div>
<script src="Regform.js"></script>
<?php
include_once 'footer.php';
?>