-
Notifications
You must be signed in to change notification settings - Fork 0
/
requestPage.php
53 lines (45 loc) · 1.62 KB
/
requestPage.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
<html>
<head>
<link rel="stylesheet" href="moneyApp.css"> <?php include 'themes.php'; ?>
</head>
<body>
<header>
<?php include_once 'header.php'; ?>
</header>
<form id="requestForm" action="requesting.php" method="post">
<div>
<div class="Btext">
Who are you requesting from?
</div>
<select name="requestPersonSelect" id="requestPersonSelect" class="formBox">
<?php include_once 'memberDropDownMenu.php';
include_once 'sessionStart.php';
makeDropDown($_SESSION['id']);
?>
</select>
</div>
<div>
<div class="Btext">
How much would you like to request?
</div>
<input name="requestCashAmount" id="requestCashAmount" class="formBox" type="number" step="0.01" min=0.01 max=1000000>
</div>
<div>
<div class="Btext">
Note: for...
</div>
<input name="requestNote" id="requestNote" class="formBox">
</div>
<button id="requestDoneButton" class="formbox">Done</button>
<div class="hidden" id="confirmation">
<div class="dimmedScreen"></div>
<div id="confirmationBox">
<div id=requestConfirm class="btext"></div>
<button id="requestConfirmYes" data-submit="1" class="confirmationButton">Yes</button>
<button id="requestConfirmNo" class="confirmationButton">No</button>
</div>
</div>
</form>
<script src="moneyApp.js"></script>
</body>
</html>