Code owners
Assign users and groups as approvers for specific file changes. Learn more.
local-auth-data.html 1.83 KiB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Local Authority</title>
<link rel="stylesheet" th:href="@{css\allTrails.css}">
<link rel="stylesheet" th:href="@{css\templatingstyle.css}">
</head>
<header th:insert="~{/towns/Templating.html::header}"></header>
<body>
<div id="container1">
<h2>Enter your Local authority</h2>
<form action="/local-auth-data" method="post" id="data" object="localauthsub">
<p>
<label for="localAuthorityName">Enter your local authority</label>
<input type="text" name="authority_name" id="localAuthorityName">
</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>
<p>
<label for="website">Please enter your website address</label>
<input type="url" name="web_site" id="website">
</p>
<input type="submit" value="Submit">
</form>
</div>
</body>
<footer th:insert="~{/towns/Templating.html::footer}"></footer>
</html>