-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
44 lines (33 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Welcome to Findam</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<?php
//echo 'max_execution_time = ' . (ini_get('max_execution_time')) . "\n";
?>
<div class="wrapper indexPage">
<div class="mainSection">
<div class="logoContainer">
<img src="./assets/images/FINDAM_lego.png" alt="findam_logo">
</div>
<div class="searchContainer">
<form action="search.php" method="GET">
<input type="text" class="searchBox" name="term" placeholder="Start Typing">
<input type="submit" class="searchButton" value="Search">
</form>
</div>
</div>
</div> <br>
<div class="footerContainer">
<p class="copyright-text">Copyright © 2021 All Rights Reserved by
<a href="#">Mbiakop Clinton</a>.
</p>
</div>
</body>
</html>