forked from LondonStageDB/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
26 lines (22 loc) · 938 Bytes
/
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
<!doctype html>
<html class="no-js yes-flex" lang="en">
<head>
<?php include_once('common/header.php'); ?>
<title>Search</title>
</head>
<body id="home" class="home-page">
<?php include_once('common/nav.php'); ?>
<div id="main" class="main">
<div class="form-wrap">
<h1>London Stage Database</h1>
<form id="searchForm" class="search-form grid-x grid-margin-x" method="get" action="results.php">
<label for="keyword" class="fb-text-label show-for-sr">Keyword</label>
<input type="text" class="keyword input-group-field" name="keyword" id="keyword" placeholder='Search (e.g., Behn, Macbeth, harlequin, or "riot")' autofocus>
<input type="submit" class="button input-group-button" value="Search" />
<a href="search.php" class="adv-search">Advanced Search</a>
</form>
</div>
</div>
<?php include_once('common/footer.php'); ?>
</body>
</html>