瀏覽代碼

erasing html unused files.

Lucas Albertins 2 年之前
父節點
當前提交
5546e5f9d6

+ 0 - 21
src/main/resources/templates/account_form.html

@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<head>
-    <meta charset="UTF-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>New account</title>
-</head>
-
-<body>
-    <form action="" method="post">
-        <label for="name">Name</label>
-        <input name="name" type="text" />
-        <label for="balance">Initial balance</label>
-        <input name="balance" type="number" />
-        <button type="submit">Create</button>
-    </form>
-</body>
-
-</html>

+ 0 - 24
src/main/resources/templates/transaction_form.html

@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<head>
-    <meta charset="UTF-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>New transaction</title>
-</head>
-
-<body>
-    <p th:text="${error}" style="color: red"></p>
-    <form action="" method="post">
-        <label for="fromAccountId">Source account</label>
-        <input name="fromAccountId" type="number" />
-        <label for="toAccountId">Destination account</label>
-        <input name="toAccountId" type="number" />
-        <label for="value">Value</label>
-        <input name="value" type="number" />
-        <button type="submit">Submit</button>
-    </form>
-</body>
-
-</html>

+ 0 - 18
src/main/resources/templates/transactions.html

@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<head>
-    <meta charset="UTF-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>Transactions</title>
-</head>
-
-<body>
-    <a href="/transaction/form">Create new transaction</a>
-    <ul>
-        <li th:each="transaction: ${transactions}"><span th:text="${transaction}"></span></li>
-    </ul>
-</body>
-
-</html>