forked from EngrSaad2/Bus-ticket-reservation-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagent.php
83 lines (67 loc) · 2.62 KB
/
agent.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
80
81
82
83
<?php include"inc/header.php";?>
</head>
<?php include("inc/header_bottom.php"); ?>
<!--- /header ---->
<!--- footer-btm ---->
<!--- /footer-btm ---->
<!--- banner-1 ---->
<div class="banner-1 ">
<div class="container">
<h1> Ensuring Your Best Experience </h1>
</div>
</div>
<!--- /banner-1 ---->
<div class="bus-btm">
<div class="container">
<div class="col-md-6 " >
<div class="ag-bt">
<a class="regist" href="#">Register Online & Start Now</a>
</div>
<?php if(isset ($sms)) {echo $sms;} ?>
<form method="post" enctype="multipart/form-data">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" name="name" class="form-control" id="name" placeholder="Enter Your Name">
</div>
<div class="form-group">
<label for="company">Company:</label>
<input type="text" name="company" class="form-control" id="company" placeholder="Enter Your Company Name">
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="text" name="email" class="form-control" id="email" placeholder="Enter Your Email">
</div>
<div class="form-group">
<label for="contact">Contact No:</label>
<input type="text" name="contact" class="form-control" id="contact" placeholder="Enter Your Contact No">
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" name="password" class="form-control" id="password" placeholder="Enter Your Password">
</div>
<div class="form-group">
<label for="pwd">Confirm Password:</label>
<input type="password" name="repassword" class="form-control" id="repassword" placeholder="Retype Your Password">
</div>
<div class="form-group">
<label for="image">Image:</label>
<input type="file" name="image" class="form-control" >
</div>
<button type="submit" name="btn" class="btn btn-success">Submit</button>
</form>
</div>
</br>
</br>
</br>
<div class="col-md-6 agent-right">
<h3>Contact Us</h3>
<p><a href="mailto:example@email.com">contact@example.com</a></p>
<p>+8801745455454</p>
</div>
<div class="clearfix"></div>
</div>
<!---728x90--->
</div>
<!--- /agent ---->
<!--- footer-top ---->
<?php include"inc/footer.php" ; ?>