-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
32 lines (27 loc) · 1.12 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Know Your Leader</title>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
</head>
<body>
<?php include "includes/header.php" ?>
<div class="body">
<div class="clear"></div>
<div class="body_content">
<div class="buttons">
<div><h2>Enter The Name Of The Politician</h2></div>
<div id="form-place">
<form id="form-app" action="analysis.php" method="get">
<input type="text" style="width:400px; height: 40px; font-size:18px; padding:5px" placeholder="Enter Name To Know Favours" name="query" /><br>
<input id="sub" type="submit" class="btn btn-primary" value="submit" />
</form>
</div>
</div>
</div>
</div>
<?php include "includes/footer.php" ?>
</body>
</html>