Select Git revision
      
  towns-data.html
              Rhys Nute authored 
  Code owners
      
 Assign users and groups as approvers for specific file changes. Learn more.
   towns-data.html  1.48 KiB 
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Towns</title>
    <link rel="stylesheet" th:href="@{css/landmarkFormStyle.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="" 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>
<footer th:insert="~{/towns/Templating.html::footer}"></footer>
</html>