forked from WebdeveloperIsaac/Alumini-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acevent.jsp
29 lines (26 loc) · 1.4 KB
/
acevent.jsp
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
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Create Event</title>
<link rel="stylesheet" href="./css/studentregister.css" >
</head>
<body>
<div class="form-container">
<form action="createevent" method="post" >
<h1>Enter Info About the Event</h1>
<h2>Event Name</h2>
<input type="text" name="Event-Name" placeholder="Event-Name" class="inputs"><br><br>
<h2>Event Location</h2>
<input type="text" name="Event-Location" placeholder="Event-location" class="inputs"><br><br>
<h2>Event Description</h2>
<input type="text" name="Event-Description" placeholder="Event-Description" class="inputs"><br><br>
<h2>Event Author</h2>
<input type="text" name="Event-Author" placeholder="Event-Author" class="inputs"><br><br>
<h2>Event Timings</h2>
<input type="datetime-local" name="Event-Timings" placeholder="Event-Timings" class="inputs"><br><br>
<button type="submit" class="btn">Create Event!</button><br><br>
</body>
</html>