-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
31 lines (22 loc) · 967 Bytes
/
index.php
File metadata and controls
31 lines (22 loc) · 967 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>universities</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/main.css">
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-black">
<p class="text-3xl text-white">Enter country and search all universities in that country</p>
<br></br>
<form method="POST" action="results.php">
<input type="text" class="rounded-md w-52 shadow-sm self-center" name="country" placeholder="enter country" required/>
<button type="submit" class="bg-white rounded-r-lg rounded-l-lg"name="submit">submit</button>
</form>
<br></br>
<p class="text-3xl text-white">if you want your searched history click down</p>
<a href="searchHistory.php" class="bg-white rounded-r-lg rounded-l-lg">search history</a>
</body>
</html>