Skip to content
Snippets Groups Projects
Select Git revision
  • 7d1935d058c2a4238ec21e341934ee79c1caa43a
  • main default protected
  • Gabes-testing-branch
  • 81-as-a-child-i-want-a-very-flashy-and-modern-looking-webpage-that-will-draw-me-in-and-keep-me
  • locationApporvalFormValidationUpdate
  • 74-as-a-user-i-want-to-see-a-page-of-local-authorities-so-that-i-can-easily-source-contact-details
  • businesses
  • 77-as-a-user-i-want-to-be-able-to-use-the-application-on-any-device-e-g-iphone-ipad-laptop
  • 69-as-a-user-i-would-like-a-town-specific-page-which-shows-all-trails-for-that-town-so-that-i-can
  • 80-as-a-convenience-enthusiast-i-want-a-drop-down-menu-to-be-able-to-quickly-scan-qr-codes-i-find
  • 82-as-a-site-admininstrator-i-want-to-be-able-to-review-submited-trail-checkpoints-by-bussiness
  • 68-as-a-user-i-would-like-to-see-a-map-containing-all-landmarks-for-a-trail-and-a-suggested-path
  • 70-as-a-repeat-trail-visitor-i-want-to-be-able-to-create-an-account-so-i-can-save-and-review-my
  • towns
  • DTFrontEnd
  • 52-as-a-user-i-would-like-to-see-a-map-of-the-landmarks-so-that-i-can-figure-out-where-to-go
  • 73-as-a-qr-scanning-connoisseur-i-want-to-unlock-stickers-after-scanning-a-qr-code-to-feel-a-sense
  • QRCodes
  • consumers
  • foreignkeys
  • cleanup
21 results

towns-data.html

Blame
  • Rhys Nute's avatar
    Rhys Nute authored
    7d1935d0
    History
    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>