Add info footer in login layout

This commit is contained in:
Andrea Fazzi 2019-12-06 07:49:32 +01:00
parent 397efbf226
commit 4f72e0368c
3 changed files with 26 additions and 5 deletions

View file

@ -7,6 +7,23 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/styles.css" />
<title>OEF 2020</title>
<style>
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 60px; /* Margin bottom by footer height */
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px; /* Set the fixed height of the footer here */
line-height: 60px; /* Vertically center the text there */
background-color: #f5f5f5;
}
</style>
</head>
<body>
@ -15,6 +32,14 @@
{{ template "content" . }}
</div>
<footer class="footer text-center">
<div class="container">
<span class="text-center text-muted">Questo software è stato sviluppato da <a href="https://github.com/remogatto">Andrea
Fazzi</a> per le <a href="https://www.olimpiadi-economiaefinanza.it">Olimpiadi di Economia e Finanza 2020</a>
</span>
</div>
</footer>
<script src="/main.bundle.js"></script>
</body>

View file

@ -20,9 +20,7 @@
{{if .Options.Get "failed"}}
<p class="text-center text-danger">Autenticazione fallita!</p>
{{end}}
<p class="text-center">Per iscrivere una scuola clicca <a href="/subscribe?tpl_content=login_subscribe&tpl_layout=login">qui</a>.</p>
<p class="text-center">Questo software è stato sviluppato da <a href="https://github.com/remogatto">Andrea
Fazzi</a> per le <a href="https://www.olimpiadi-economiaefinanza.it">Olimpiadi di Economia e Finanza</a></p>
<p class="text-center">Per iscrivere la tua scuola clicca <a href="/subscribe?tpl_content=login_subscribe&tpl_layout=login">qui</a>.</p>
</div>
</div>
{{ end }}

View file

@ -17,8 +17,6 @@
<p class="text-center text-danger">Autenticazione fallita!</p>
{{end}}
<p class="text-center">Per tornare alla pagina di login clicca <a href="/login?tpl_content=login&tpl_layout=login">qui</a>.</p>
<p class="text-center">Questo software è stato sviluppato da <a href="https://github.com/remogatto">Andrea
Fazzi</a> per le <a href="https://www.olimpiadi-economiaefinanza.it">Olimpiadi di Economia e Finanza</a></p>
</div>
</div>
{{ end }}