-
Notifications
You must be signed in to change notification settings - Fork 0
/
food_category.php
101 lines (90 loc) · 3.46 KB
/
food_category.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php
require 'server.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Application Form</title>
<!-- Meta tag Keywords -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<!--// Meta tag Keywords -->
<!-- css files -->
<link rel="stylesheet" href="web_home/css_home/edwin.css"> <!-- Bootstrap-Core-CSS -->
<link rel="stylesheet" href="web_home/css_home/style.css" type="text/css" media="all" /> <!-- Style-CSS -->
<link rel="stylesheet" href="web_home/css_home/fontawesome-all.css"> <!-- Font-Awesome-Icons-CSS -->
</head>
<body>
<!-- banner -->
<div class="inner-page-banner" id="home">
<!--Header-->
<header>
<div class="container agile-banner_nav">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<h1><a class="navbar-brand" href="home.php">HMS <span class="display"></span></a></h1>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-center" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="home.php">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="services.php">Hostels</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.php">Contact Us</a>
</li>
<li class="dropdown nav-item">
<a href="#" class="dropdown-toggle nav-link" data-toggle="dropdown"><?php echo $_SESSION['username']; ?>
<b class="caret"></b>
</a>
<ul class="dropdown-menu agile_short_dropdown">
<li>
<a href="profile.php">My Profile</a>
</li>
<li>
<a href="logout.inc.php">Logout</a>
</li>
</ul>
</li>
</ul>
</div>
</nav>
</div>
</header>
<!--Header-->
</div>
<!-- //banner -->
<section class="contact py-5">
<div class="container">
<h2 class="heading text-capitalize mb-sm-5 mb-4"> Application Form </h2>
<div class="mail_grid_w3l">
<form action="application_form.php?id=<?php echo $_GET['id']?>" method="post">
<div class="row">
<div class="col-md-6 contact_left_grid" data-aos="fade-right">
<div class="contact-fields-w3ls">
<input type="text" name="username" placeholder="Name" value="<?php echo $_SESSION['username']; ?>" required="" disabled="disabled">
</div>
<div class="contact-fields-w3ls">
<input type="text" name="roll" placeholder="Roll Number" value="<?php echo isset($_SESSION['roll'])?>" required="" disabled="disabled">
</div>
<div class="contact-fields-w3ls">
<input type="text" name="hostel name" placeholder="Hostel" value="<?php echo isset($_GET['title'])?>" required="" disabled="disabled">
</div>
<div class="contact-fields-w3ls">
<input type="password" name="password" placeholder="Password" required="">
</div>
</div>
<div class="col-md-6 contact_left_grid" data-aos="fade-left">
<div class="contact-fields-w3ls">
<textarea name="Message" placeholder="Message..." ></textarea>
</div>
<input type="submit" name="submit" value="Click to Apply">
</div>
</div>
</form>
</div>
</div>
</section>