-
Notifications
You must be signed in to change notification settings - Fork 3
/
search.php
59 lines (45 loc) · 1.1 KB
/
search.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
//this is the page an end user can use
//to search for incoming replies to sent
//messages. It uses searchprocessor.php to
//process the request.
//20180520 km4ack
//include variables from config.php
include('/var/www/html/config.php');
?>
<!DOCTYPE html>
<html>
<head>
<title>Search Replies</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1><?php echo $callsign ?> Emergency Email Server<br>
<div id="pagelabel">Search For A Reply</div>
</h1>
<hr>
<br>
<br>
<div>
<br>
<br>
<strong>Enter the email or phone number of the person that you messaged earlier in the box below. If you have received a reply, a list
will be generated on the next screen.</strong>
<br><br>
</div>
<div class="content">
<form action="searchprocessor.php" method="POST"
<label>Email or Phone Number</label><br>
<input name="search" type="text" size="66" />
<br>
<br>
</div>
<input name="mySubmit" type="submit" value="Search" />
<br>
</form>
<br><br>
<form action="email.php">
<input type="submit" value="Compose Email" />
</form>
</body>
</html>