-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddHall.php
55 lines (42 loc) · 1.53 KB
/
AddHall.php
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
<?php session_start(); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include("head.php"); ?>
<title>Add Hall</title>
<style>
body {
background-image: url("images/operared.jpg");
background-repeat: no-repeat ;
background-size: 100% 100%;
}
</style>
</head>
<body style="background-color:black">
<?php include("navbar.php"); ?>
<br>
<div id="body">
<form action="AddHallphp.php" method="post" style="border: 2px solid white;border-radius: 8px;padding-top: 1%; padding-left:1% ;padding-right:1% ;padding-bottom:2%;width:460px; margin-right:auto; margin-left:auto; ;background-color:#FFFFFF;background-size: 100%">
<div class="form-group">
<label for="exampleinputHallName">Hall Name</label>
<input type="text" class="form-control" style="width:70%" required id="exampleinputHallName" name="HallName" placeholder="Hall Name">
</div>
<div class="form-group">
<label for="exmaplenumberofseats">Number Of Seats</label>
<input type="number" class="form-control" style="width:70%;" required id="exmaplenumberofseats" name="NumberOfSeats" placeholder="400">
</div>
<div class="form-group">
<label for="exmaplenumberofseatsperrow">Setas Per Row</label>
<input type="number" class="form-control" style="width:70%;" required id="exmaplenumberofseatsperro" name="SeatsPerRow" placeholder="40">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</br>
</br>
</br>
</br>
</br>
<?php include("footer.php"); ?>
</body>
</html>