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 @@
<link rel="stylesheet" th:href="@{css/landmarkFormStyle.css}">
<link rel="stylesheet" th:href="@{css/mobile-style.css}">
</head>
<header th:insert="fragments/banners :: header"></header>
<body>
<div id="container1">
<h2>Enter your Business information</h2>
<form action="/businesses" id="data" name="data" method="post" th:object="${business}">
<br>
<label>Enter your business
<input type="text" th:field="*{businessName}">
</label><br><br>
<label>Please enter first line of your address
<input type="text" th:field="*{address1}">
</label><br><br>
<label>Please enter second line of your address (optional)
<input type="text" th:field="*{address2}">
</label><br><br>
<label>Please enter the City/Town
<input type="text" th:field="*{city}">
</label><br><br>
<label>Please enter you county (optional)
<input type="text" th:field="*{county}">
</label><br><br>
<label>Please enter your postcode
<input type="text" th:field="*{postcode}">
</label><br><br>
<label>Please enter your website address
<input type="text" th:field="*{website}">
</label><br><br>
<input type="submit">
</form>
</div>
<header th:replace="~{/fragments/banners::header}"></header>
<main>
<div id="container1">
<h2>Enter your Business information</h2>
<form action="/businesses" id="data" name="data" method="post" th:object="${business}">
<br>
<label>Enter your business
<input type="text" th:field="*{businessName}">
</label><br><br>
<label>Please enter first line of your address
<input type="text" th:field="*{address1}">
</label><br><br>
<label>Please enter second line of your address (optional)
<input type="text" th:field="*{address2}">
</label><br><br>
<label>Please enter the City/Town
<input type="text" th:field="*{city}">
</label><br><br>
<label>Please enter you county (optional)
<input type="text" th:field="*{county}">
</label><br><br>
<label>Please enter your postcode
<input type="text" th:field="*{postcode}">
</label><br><br>
<label>Please enter your website address
<input type="text" th:field="*{website}">
</label><br><br>
<input type="submit">
</form>
</div>
</main>
<div th:replace="~{fragments/banners :: footer}"></div>
</body>
<div th:insert="fragments/banners :: footer"></div>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<html xmlns:th="http://www.thymeleaf.org">
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Businesses</title>
<link rel="stylesheet" th:href="@{css/landmarkFormStyle.css}">
<link rel="stylesheet" th:href="@{css/mobile-style.css}">
</head>
<header th:insert="fragments/banners :: header"></header>
<body>
<p>A business is an organised establishment in a professional manner in order to achieve your particular aim for owning a business.</p>
<h3>Future Proof Businesses</h3>
<h3>Compete with Online Retailers</h3>
<h3>Drive Footfall to the high street</h3>
<h3>Increase Sales</h3>
<ul th:each="businesses:${busiSub}">
<li th:text="${businesses}"></li>
</ul>
<button><a href="/businessSub" id="business">Businesses please enter here</a></button>
<header th:replace="~{/fragments/banners::header}"></header>
<main>
<p>A business is an organised establishment in a professional manner in order to achieve your particular aim for owning a business.</p>
<h3>Future Proof Businesses</h3>
<h3>Compete with Online Retailers</h3>
<h3>Drive Footfall to the high street</h3>
<h3>Increase Sales</h3>
<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>
<div th:insert="fragments/banners :: footer"></div>
</html>
\ No newline at end of file
......@@ -7,7 +7,7 @@
<link rel="stylesheet" th:href="@{css/landmarkFormStyle.css}">
<link rel="stylesheet" th:href="@{css/mobile-style.css}">
</head>
<header th:insert="~{/fragments/banners::header}"></header>
<header th:replace="~{/fragments/banners::header}"></header>
<body>
<main>
<div id="container1">
......@@ -40,5 +40,5 @@
</div>
</main>
</body>
<footer th:insert="~{/fragments/banners::footer}"></footer>
<footer th:replace="~{/fragments/banners::footer}"></footer>
</html>
\ No newline at end of file
......@@ -6,8 +6,9 @@
<link rel="stylesheet" th:href="@{css/localAuthorityPageStyle.css}">
<link rel="stylesheet" th:href="@{css/mobile-style.css}">
</head>
<header th:insert="fragments/banners :: header"></header>
<body>
<header th:replace="fragments/banners :: header"></header>
<main>
<h1>Local Authorities</h1>
<div id="councils">
......@@ -16,7 +17,8 @@
</ul>
</div>
<button><a href="/localForm" id="authority">Local Authorities please enter here</a></button>
<div th:insert="fragments/banners :: footer"></div>
</main>
<footer th:replace="fragments/banners :: footer"></footer>
</body>
</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