Skip to content
Snippets Groups Projects

Draft: Towns

Closed Rhys Nute requested to merge towns into main
Files
4
@@ -3,8 +3,39 @@
<head>
<meta charset="UTF-8">
<title>Towns</title>
<link rel="stylesheet" href="static/css/templatingstyle.css">
</head>
<body>
<div id="container1">
<h2>Enter your Local authority</h2>
<form action="local-auth-data.php" method="post" id="data">
<p>
<label for="townName">Enter your town</label>
<input type="text" name="town_Name" id="townName">
</p>
<p>
<label for="address1">Please enter first line of your address</label>
<input type="text" name="address_1" id="address1">
</p>
<p>
<label for="address2">Please enter second line of your address (optional)</label>
<input type="text" name="address_2" id="address2">
</p>
<p>
<label for="city">Please enter the City/Town</label>
<input type="text" name="city" id="city">
</p>
<p>
<label for="county">Please enter you county (optional)</label>
<input type="text" name="county" id="county">
</p>
<p>
<label for="postcode">Please enter your postcode</label>
<input type="text" name="post_code" id="postcode">
</p>
<input type="submit" value="Submit Data">
</form>
</div>
</body>
</html>
\ No newline at end of file
Loading