Skip to content
Snippets Groups Projects
Commit 0015600d authored by Gabriel Copat's avatar Gabriel Copat
Browse files

HTML fixes w/ Rhys Nute

parent fe029757
No related branches found
No related tags found
1 merge request!31Resolve "As a user, I want to see a page of local authorities so that I can easily source contact details for a variety of different local authorities."
...@@ -6,36 +6,40 @@ ...@@ -6,36 +6,40 @@
<link rel="stylesheet" th:href="@{css/landmarkFormStyle.css}"> <link rel="stylesheet" th:href="@{css/landmarkFormStyle.css}">
<link rel="stylesheet" th:href="@{css/mobile-style.css}"> <link rel="stylesheet" th:href="@{css/mobile-style.css}">
</head> </head>
<header th:insert="fragments/banners :: header"></header>
<body> <body>
<div id="container1"> <header th:replace="~{/fragments/banners::header}"></header>
<h2>Enter your Business information</h2> <main>
<form action="/businesses" id="data" name="data" method="post" th:object="${business}"> <div id="container1">
<br> <h2>Enter your Business information</h2>
<label>Enter your business <form action="/businesses" id="data" name="data" method="post" th:object="${business}">
<input type="text" th:field="*{businessName}"> <br>
</label><br><br> <label>Enter your business
<label>Please enter first line of your address <input type="text" th:field="*{businessName}">
<input type="text" th:field="*{address1}"> </label><br><br>
</label><br><br> <label>Please enter first line of your address
<label>Please enter second line of your address (optional) <input type="text" th:field="*{address1}">
<input type="text" th:field="*{address2}"> </label><br><br>
</label><br><br> <label>Please enter second line of your address (optional)
<label>Please enter the City/Town <input type="text" th:field="*{address2}">
<input type="text" th:field="*{city}"> </label><br><br>
</label><br><br> <label>Please enter the City/Town
<label>Please enter you county (optional) <input type="text" th:field="*{city}">
<input type="text" th:field="*{county}"> </label><br><br>
</label><br><br> <label>Please enter you county (optional)
<label>Please enter your postcode <input type="text" th:field="*{county}">
<input type="text" th:field="*{postcode}"> </label><br><br>
</label><br><br> <label>Please enter your postcode
<label>Please enter your website address <input type="text" th:field="*{postcode}">
<input type="text" th:field="*{website}"> </label><br><br>
</label><br><br> <label>Please enter your website address
<input type="submit"> <input type="text" th:field="*{website}">
</form> </label><br><br>
</div> <input type="submit">
</form>
</div>
</main>
<div th:replace="~{fragments/banners :: footer}"></div>
</body> </body>
<div th:insert="fragments/banners :: footer"></div>
</html> </html>
\ No newline at end of file
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en" xmlns:th="http://www.thymeleaf.org">
<html xmlns:th="http://www.thymeleaf.org">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Businesses</title> <title>Businesses</title>
<link rel="stylesheet" th:href="@{css/landmarkFormStyle.css}"> <link rel="stylesheet" th:href="@{css/landmarkFormStyle.css}">
<link rel="stylesheet" th:href="@{css/mobile-style.css}"> <link rel="stylesheet" th:href="@{css/mobile-style.css}">
</head> </head>
<header th:insert="fragments/banners :: header"></header>
<body> <body>
<p>A business is an organised establishment in a professional manner in order to achieve your particular aim for owning a business.</p> <header th:replace="~{/fragments/banners::header}"></header>
<h3>Future Proof Businesses</h3>
<h3>Compete with Online Retailers</h3> <main>
<h3>Drive Footfall to the high street</h3> <p>A business is an organised establishment in a professional manner in order to achieve your particular aim for owning a business.</p>
<h3>Increase Sales</h3> <h3>Future Proof Businesses</h3>
<ul th:each="businesses:${busiSub}"> <h3>Compete with Online Retailers</h3>
<li th:text="${businesses}"></li> <h3>Drive Footfall to the high street</h3>
</ul> <h3>Increase Sales</h3>
<button><a href="/businessSub" id="business">Businesses please enter here</a></button> <ul th:each="businesses:${busiSub}">
<li th:text="${businesses}"></li>
</ul>
<button><a href="/businessSub" id="business">Businesses please enter here</a></button>
</main>
<footer th:replace="~{fragments/banners :: footer}"></footer>
</body> </body>
<div th:insert="fragments/banners :: footer"></div>
</html> </html>
\ No newline at end of file
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<link rel="stylesheet" th:href="@{css/landmarkFormStyle.css}"> <link rel="stylesheet" th:href="@{css/landmarkFormStyle.css}">
<link rel="stylesheet" th:href="@{css/mobile-style.css}"> <link rel="stylesheet" th:href="@{css/mobile-style.css}">
</head> </head>
<header th:insert="~{/fragments/banners::header}"></header> <header th:replace="~{/fragments/banners::header}"></header>
<body> <body>
<main> <main>
<div id="container1"> <div id="container1">
...@@ -40,5 +40,5 @@ ...@@ -40,5 +40,5 @@
</div> </div>
</main> </main>
</body> </body>
<footer th:insert="~{/fragments/banners::footer}"></footer> <footer th:replace="~{/fragments/banners::footer}"></footer>
</html> </html>
\ No newline at end of file
...@@ -6,8 +6,9 @@ ...@@ -6,8 +6,9 @@
<link rel="stylesheet" th:href="@{css/localAuthorityPageStyle.css}"> <link rel="stylesheet" th:href="@{css/localAuthorityPageStyle.css}">
<link rel="stylesheet" th:href="@{css/mobile-style.css}"> <link rel="stylesheet" th:href="@{css/mobile-style.css}">
</head> </head>
<header th:insert="fragments/banners :: header"></header>
<body> <body>
<header th:replace="fragments/banners :: header"></header>
<main> <main>
<h1>Local Authorities</h1> <h1>Local Authorities</h1>
<div id="councils"> <div id="councils">
...@@ -16,7 +17,8 @@ ...@@ -16,7 +17,8 @@
</ul> </ul>
</div> </div>
<button><a href="/localForm" id="authority">Local Authorities please enter here</a></button> <button><a href="/localForm" id="authority">Local Authorities please enter here</a></button>
<div th:insert="fragments/banners :: footer"></div>
</main> </main>
<footer th:replace="fragments/banners :: footer"></footer>
</body> </body>
</html> </html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment