-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWebProgram.xhtml
38 lines (32 loc) · 1.04 KB
/
WebProgram.xhtml
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<link rel="stylesheet" type="text/css" href="StyleSheet.css"/>
</head>
<body>
<form action="confirmationpage.php" method="POST">
<h3> Contact Details </h3>
First Name:<br />
<input type="text" name="firstnames" /><br />
Family Name:<br />
<input type="text" name="familyname" /><br />
Email Address:<br />
<input type="email" name="email" /><br />
Mobile Number:<br />
<input type="text" name="mobilenumber" /><br />
<br />
<h3> Address Details </h3>
Address line 1:<br />
<input type="text" name="addressline1" /><br />
Address line 2:<br />
<input type="text" name="addressline2" /><br />
Address line 3:<br />
<input type="text" name="addressline3" /><br />
City:<br />
<input type="text" name="city" /><br />
Postcode:<br />
<input type="text" name="postcode" /><br />
<input type="submit" name="submit" value="submit" />
</form>
</body>
</html>