-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail.php
23 lines (23 loc) · 1.17 KB
/
email.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php require "functions.php" ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Josefin+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="dine.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
</head>
<body id="plate">
<div id="text">
<form method="get" action="confirm.php">
Finally, what's your email?<br/>
<input style="width: 500px;" type="email" name="email" placeholder="[email protected]"/><br/>
<input type="hidden" name="duration" value="<?php echo duration(); ?>"/>
<input type="hidden" name="when" value="<?php echo when(); ?>"/>
<input type="hidden" name="why" value="<?php echo reason(); ?>"/>
<input type="hidden" name="who" value="<?php echo name(); ?>"/>
<input type="hidden" name="where" value="<?php echo place(); ?>"/>
<input class="submit" type="submit" value="On to confirmation">
</form>
</div>
</body>
</html>