Remove view files

This commit is contained in:
hou27
2022-06-16 14:05:24 +09:00
parent 4ac6e75311
commit 9f13dc78b7
5 changed files with 0 additions and 115 deletions

View File

@@ -1,17 +0,0 @@
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<body>
<div class="container">
<div>
<h1>Test Page</h1>
<p>User</p>
<p>
<a href="/auth/signUp">Sign Up</a>
<a href="/auth/signIn">Sign In</a>
<br>
<a href="/user/profile">Profile</a>
</p>
</div>
</div>
</body>
</html>

View File

@@ -1,24 +0,0 @@
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<body>
<div class="container">
<div>
<table>
<thead>
<tr>
<th>#</th>
<th>My Profile</th>
</tr>
</thead>
<tbody>
<tr th:if="${userDetail}">
<td th:text="${userDetail.getEmail()}"></td>
<td th:text="${userDetail.getName()}"></td>
</tr>
</tbody>
</table>
</div>
<a href="/">Home</a>
</div>
</body>
</html>

View File

@@ -1,26 +0,0 @@
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Login</title>
</head>
<body>
<div class="container">
<div>
<h2>로그인</h2>
</div>
<h3 th:if="${failed}">Fail to login</h3>
<form action="/auth/signIn" method="post">
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Enter your email">
<br/>
<label for="password">PW</label>
<input type="password" id="password" name="password" placeholder="Enter your password">
</div>
<button type="submit">Sign In</button>
</form>
</div>
<a href="/">Home</a>
</body>
</html>

View File

@@ -1,24 +0,0 @@
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<body>
<div class="container">
<div>
<h2>회원가입</h2>
</div>
<form action="/auth/signUp" method="post">
<div class="form-group">
<label for="email">Email</label>
<input type="text" id="email" name="email" placeholder="Enter your email">
<br/>
<label for="password">PW</label>
<input type="text" id="password" name="password" placeholder="Enter your password">
<br/>
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Enter your name">
</div>
<button type="submit">Sign Up</button>
</form>
</div>
<a href="/">Home</a>
</body>
</html>

View File

@@ -1,24 +0,0 @@
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<body>
<div class="container">
<div>
<table>
<thead>
<tr>
<th>#</th>
<th>User List</th>
</tr>
</thead>
<tbody>
<tr th:each="user : ${userList}">
<td th:text="${user.id}"></td>
<td th:text="${user.name}"></td>
</tr>
</tbody>
</table>
</div>
<a href="/">Home</a>
</div>
</body>
</html>