-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest_form.php
More file actions
24 lines (21 loc) · 962 Bytes
/
request_form.php
File metadata and controls
24 lines (21 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>Request Peer</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<h2>Client Form</h2>
<form action="submit_request.php" method="POST">
<label style="text-align: left; display: block;">Name</label>
<input type="text" name="form_name" placeholder="First name, Middle Initial, Surname">
<label style="text-align: left; display: block;">Grade, Section, Curriculum</label>
<input type="text" name="form_grade_section" placeholder="Example: 10, Einstein, STE">
<label style="text-align: left; display: block;">Desired matters to talk about</label>
<textarea name="form_topic" rows="4" placeholder="Be yourself! Your information is safe!"></textarea>
<button type="submit" name="send_request" class="btn-primary">SEND REQUEST</button>
</form>
</div>
</body>
</html>