-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEventCreationPage.html
More file actions
67 lines (64 loc) · 1.77 KB
/
EventCreationPage.html
File metadata and controls
67 lines (64 loc) · 1.77 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
57
58
59
60
61
62
63
64
65
66
67
<html>
<head>
<title>Create your Event</title>
<style type="text/css">
body{
background-image: url("https://www.toptal.com/designers/subtlepatterns/patterns/ignasi_pattern_s.png");
}
p{
font-family: sans-serif;
text-align: center;
color: white;
background-color: #818181;
opacity: 0.6;
padding-top: 60px;
padding-bottom: 60px;
margin-left: 300px;
margin-right: 300px;
margin-top: 60px;
}
h1{
background-color: #818181;
text-align: center;
opacity:0.3;
font-family: impact;
color:white;
font-size: 32px;
}
button{
background-color: #818181;
text-align: center;
opacity:0.6;
font-family: impact;
color:white;
font-size: 24px;
cursor: pointer;
margin-right: auto;
margin-left: auto;
display: block;
}
h2{
font-family: impact;
text-align: center;
font-size: 32px;
background-color: #818181;
opacity: 0.3;
color:white;
}
</style>
</head>
<body>
<h1>Event Management Website</h1>
<h1>Create your Event</h1>
<form onsubmit="return createEvent2()">
<p>Event Name: <input type="text" name="eventName" value=""><br>
Estimated number of people: <input type="text" name="attendees" value=""><br>
How many people per table: <input type="text" name="attendees" value=""><br>
<input type="submit" value="Submit"></p>
<h2>Already have an event?</h2>
<button type="submit"> Click here to view!</button>
</form>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="create.js"></script>
</body>
</html>