Skip to content

Commit

Permalink
Add psa logo and favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
BilledTrain380 committed Sep 29, 2018
1 parent bd2ebbb commit 6f37860
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 5 deletions.
Binary file modified src/main/resources/static/favicon.ico
Binary file not shown.
Binary file removed src/main/resources/static/images/psa-logo.png
Binary file not shown.
1 change: 1 addition & 0 deletions src/main/resources/static/images/psa-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/main/resources/templates/error.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

<div class="py-5 text-center">

<img class="d-block mx-auto mb-4" width="72px" height="72px" src="images/psa-logo.png">
<img class="d-block mx-auto mb-4" width="72px" height="72px" src="images/psa-logo.svg">

<h2 class="text-danger">Oops! You run into an error!</h2>
<p class="lead">Contact your System Administrator for help.</p>
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/templates/fragments/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@
<meta charset="UTF-8">
<title th:text="${title}">...</title>

<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">

<!-- Bootstrap core CSS -->
<link href="/webjars/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">

Expand Down
23 changes: 19 additions & 4 deletions src/main/resources/templates/setup/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,14 @@

<div class="py-5 text-center">

<!--<img class="d-block mx-auto mb-4" src="img/psa-logo.png">-->
<img class="d-block mx-auto mb-4" width="72px" height="72px" src="images/psa-logo.png">
<img class="d-block mx-auto mb-4" width="72px" height="72px" src="images/psa-logo.svg">

<h2>Welcome to Sporttag PSA!</h2>
<p class="lead">Your sport event management system</p>

</div>

<div class="card">
<div class="card mb-5">
<div class="card-header">
Information needed
</div>
Expand Down Expand Up @@ -91,7 +90,23 @@ <h2>Welcome to Sporttag PSA!</h2>
<div th:each="error : ${pwValidationErrors}" th:text="${error}">...</div>
</div>

<small id="emailHelp" class="form-text text-muted"><strong>Important!</strong> You will need this password to log in.</small>
<small id="emailHelp" class="form-text text-muted mb-3"><strong>Important!</strong> You will need this password to log in.</small>

<div class="card border-info mb-3">
<div class="card-body text-info">
<h5 class="card-title">Password Policy</h5>
<p class="card-text"></p>
<ul>
<li>Must be between 8 and 64 characters long</li>
<li>Must contain at least 1 digit</li>
<li>Must contain at least 1 lowercase character</li>
<li>Must contain at least 1 uppercase character</li>
<li>Must contain at least 1 alphabetical character</li>
<li>Must contain at least 1 special character</li>
<li>Must not contain any whitespaces</li>
</ul>
</div>
</div>

</div>
</div>
Expand Down

0 comments on commit 6f37860

Please sign in to comment.