-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.php
79 lines (62 loc) · 3.56 KB
/
index.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php include('header.php'); ?>
<?php include("dbconnect.php"); ?>
<center>
<h3 style="padding: 10px;">Event Registration:</h3>
<div class="jumbotron col-6" style=" font-weight: bold;">
<form action='submit.php' method='post'>
<div class="form-group row">
<label for="name" class="col-3">Name:</label>
<input type="text" class="form-control col-8" id="name" name="name" placeholder="Enter name" required>
</div>
<div class="form-group row">
<label for="exampleInputEmail1" class="col-3">Email address:</label>
<input type="email" class="form-control col-8" id="email" name="email" placeholder="Enter email" required>
</div>
<div class="form-group row">
<label for="title" class="col-3">Event:</label>
<input type="text" class="form-control col-8" id="title" name="title" placeholder="Enter event" required>
</div>
<div class="form-group row">
<label for="Year" class="col-3">Year:</label>
<input type="int" class="form-control col-8" id="Year" name="Year" placeholder="Enter Year" required>
</div>
<div class="form-group row">
<label for="title" class="col-3">Gender:</label>
<label class="col-4">male<input class="form-check-input col-4" type="radio" name="gender" value="male" required></label>
<label class="col-4">female<input class="form-check-input col-4" type="radio" name="gender" value="female" required></label>
</div>
<div class="form-group row">
<label for="title" class="col-3">From Date:</label>
<input type="date" class="form-control col-8" id="fromdate" name='fromdate' required>
</div>
<div class="form-group row">
<label for="title" class="col-3">To Date:</label>
<input type="date" class="form-control col-8" id="todate" name='todate' required>
</div>
<div class="form-group row">
<label for="Year" class="col-3">No. of People:</label>
<input type="int" class="form-control col-8" id="people" name='people' placeholder="Enter number of people" required>
</div>
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" class="form-check-input" required>
<a href data-toggle="modal" data-target=".bd-example-modal-lg"> Agree to terms and Condtions </div>
<div class="modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
Terms and Conditions are a set of rules and guidelines that a user must agree to in order to use your website or mobile app. It acts as a legal contract between you (the company) who has the website or mobile app and the user who access your website and mobile app.
It’s up to you to set the rules and guidelines that the user must agree to. You can think of your Terms and Conditions agreement as the legal agreement where you maintain your rights to exclude users from your app in the event that they abuse your app, and where you maintain your legal rights against potential app abusers, and so on.
Terms and Conditions are also known as Terms of Service or Terms of Use.
This type of legal agreement can be used for both your website and your mobile app. It’s not required (it’s not recommended actually) to have separate Terms and Conditions agreements: one for your website and one for your mobile app.
</div>
</div>
</a>
</label>
</div>
<button class="btn btn-primary" type="submit" value='submit' >Submit</button>
<button class="btn btn-warning" type="reset" value='reset' >Reset</button>
</form>
</div>
</div>
</center>
<?php include('footer.php'); ?>