forked from COP-4710/Event_Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRSOcreate.php
More file actions
46 lines (45 loc) · 963 Bytes
/
RSOcreate.php
File metadata and controls
46 lines (45 loc) · 963 Bytes
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
<?php
session_start();
include ("config.php");
?>
<!DOCTYPE html>
<html lang = "en-US">
<head>
<title>Create RSO</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='createRSO.php' method='post'>
<p>RSO name:</p>
<textarea name='name'>Type the name of the student organization here</textarea>
<p>The student organization's description</p>
<textarea name='description'>type description here...</textarea>
</br>
<p>Organization's email account</p>
<textarea name='email'>email</textarea>
</br>
<button name='submit' type='submit'>Create Student Organization</button>
</form>
</br>
</div>
</section>
</body>
</html>