forked from COP-4710/Event_Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRSOform.php
More file actions
52 lines (51 loc) · 1.09 KB
/
RSOform.php
File metadata and controls
52 lines (51 loc) · 1.09 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
<?php
session_start();
include ("config.php");
?>
<!DOCTYPE html>
<html lang = "en-US">
<head>
<title>Create RSO Event</title>
<style>
section {
width: 100%;
height: 100vh;
background: url(bg.jpg);
background-size: cover;
}
section .window {
color: white;
margin: auto;
padding: 30px;
text-align: center;
width: 500px;
height: 500px;
background-color: rgba(0,0,0,0.7);
}
</style>
</head>
<body>
<section>
<div class='window'>
<form action='createEventRSO.php' method='post'>
<p>Event Name:</p>
<textarea name='event_name'>Type Name here</textarea>
<p>Event date</p>
<input type="date" name='date' />
</br>
<p>Event start and end time</p>
<input type="time" name='start' /> <p> - </p> <input type="time" name='end' />
</br>
<p>Event Description</p>
<textarea name='description'>Event Description</textarea>
</br>
<p>Event Location Address</p>
<textarea name='location_name'>Event Location</textarea>
</br>
<button name='submit' type='submit'>Create Event</button>
</form>
</br>
</div>
</section>
</body>
</html>