59 lines
2.2 KiB
HTML
59 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"
|
|
>
|
|
<head>
|
|
<title>WebWolf</title>
|
|
<div th:replace="fragments/header :: header-css"/>
|
|
</head>
|
|
<body>
|
|
|
|
<div th:replace="fragments/header :: header"/>
|
|
|
|
<div class="container">
|
|
|
|
<div class="row" style="margin-top:20px">
|
|
<div class="col-xs-12 col-sm-8 col-md-6 col-sm-offset-2 col-md-offset-3" th:style="'background:url(' + @{/images/wolf.png} + ') no-repeat right;'">
|
|
<form th:action="@{/login}" method="post">
|
|
<fieldset>
|
|
<h2>Sign in</h2>
|
|
Use your WebGoat account.
|
|
<br/>
|
|
<div th:if="${param.error}">
|
|
<div class="alert alert-danger">
|
|
Invalid username or password.
|
|
</div>
|
|
</div>
|
|
<div th:if="${param.logout}">
|
|
<div class="alert alert-info">
|
|
You have been logged out.
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<input type="text" name="username" id="username" class="form-control input-lg"
|
|
placeholder="UserName" required="true" autofocus="true"/>
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="password" name="password" id="password" class="form-control input-lg"
|
|
placeholder="Password" required="true"/>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
<input type="submit" class="btn btn-lg btn-primary btn-block" value="Sign In"/>
|
|
</div>
|
|
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
</div>
|
|
</div>
|
|
<div><b><a th:href="@{/registration}" th:text="#{register.new}"></a></b></div>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div th:replace="fragments/footer :: footer"/>
|
|
|
|
</body>
|
|
</html> |