-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
55 lines (46 loc) · 1.86 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Time Table</title>
<link rel='stylesheet prefetch' href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css'>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="animate.css">
</head>
<body>
<div class="login-card animated fadeInDown">
<h1>Time Table Generator</h1><br>
<h3><u>College</u></h3>
<form action="gotoPage1.php" method="post">
<input type="text" name="college" placeholder="Name Of College" required>
<input type="text" name="university" placeholder="Name Of University" required>
<input type="submit" name="submit" class="login login-submit" value="Next ->" target="page1.html">
</form>
<div class="login-help">
<a href="#">Trouble in choosing?</a>
</div>
</div>
<!-- <div id="error"><img src="https://dl.dropboxusercontent.com/u/23299152/Delete-icon.png" /> Your caps-lock is on.</div> -->
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js'></script>
<div id="clear"></div>
<div class="navigation animated fadeInUp">
<nav class="navClass">
<ul class="ulClass">
<a href="index.php">
<li class="listItem">Home</li>
</a>
<a href="aboutUs.html">
<li class="listItem">About Us</li>
</a>
<a href="support.html">
<li class="listItem">Support Us</li>
</a>
<a href="contact.html">
<li class="listItem">Contact Us</li>
</a>
</ul>
</nav>
</div>
</body>
</html>