-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegistration.html
More file actions
26 lines (22 loc) · 868 Bytes
/
Registration.html
File metadata and controls
26 lines (22 loc) · 868 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
25
26
<!DOCTYPE html>
<html>
<head>
</head>
</head>
<body>
<h1>ChatBot 404 Registration Form</h1>
<form id="form" onsubmit="return checkForm();"> <!--making form and giving it an ID. Once the data has been submitted, it will be validated by another function.-->
<label>Customer Name: </label> <!--All labels and inputs down below are just for declaring variables and for user input purposes-->
<input id ="customerName" type="text" name="Student Name" /> <!--inpupt text = text because the user needs to enter characters.-->
<label><br>Phone Number: </label>
<input id= "phone" type = "text" name = "Student ID:"/>
<br>
<label><b><br>Term and Services</b></label>
<br>
<br>
<br>
<input type="submit" value ="Submit Data"/> <!--Submit button to submit data.-->
<div id="message"></div>
</form>
</body>
</html>