wangh_branch
JoeyG 3 years ago
parent fc72af05ab
commit b5d2602192

@ -13,4 +13,4 @@ spring:
username: root username: root
password: root password: root
thymeleaf: thymeleaf:
cache: false cache: false

@ -1,5 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en" xmlns:th="http://www.thymeleaf.org">
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
@ -8,16 +8,16 @@
<title>Signin Template for Bootstrap</title> <title>Signin Template for Bootstrap</title>
<!-- Bootstrap core CSS --> <!-- Bootstrap core CSS -->
<link rel="stylesheet" href="/css/bootstrap.min.css"> <link rel="stylesheet" th:href="@{/css/bootstrap.min.css}">
<!-- Custom styles for this template --> <!-- Custom styles for this template -->
<link rel="stylesheet" href="/css/signin.css"> <link rel="stylesheet" th:href="@{/css/signin.css}">
</head> </head>
<body class="text-center"> <body class="text-center">
<form class="form-signin" action="dashboard.html"> <form class="form-signin" action="dashboard.html">
<img class="mb-4" src="/img/bootstrap-solid.svg" alt="" width="72" height="72"> <img class="mb-4" th:src="@{/img/bootstrap-solid.svg}" alt="" width="72" height="72">
<h1 class="h3 mb-3 font-weight-normal">Please sign in</h1> <h1 class="h3 mb-3 font-weight-normal">Please sign in</h1>
<label class="sr-only">Username</label> <label class="sr-only">Username</label>

Loading…
Cancel
Save