-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.php
32 lines (28 loc) · 1.16 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
<!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>
<div>
<p><strong>Try our new faster search!</strong></p>
</div>
<form id="searchForm" class="search-form grid-x grid-margin-x" method="get" action="sphinx-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 class="margin-top-1rem">
<p><small>Or visit <a href="/legacy-search.php">Legacy Search</a> to replicate searches conducted before May 2021.</small></p>
</div>
</div>
</div>
<?php include_once('common/footer.php'); ?>
</body>
</html>