-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlogout.mustache
44 lines (39 loc) · 1.34 KB
/
logout.mustache
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{{!--
Logout template
===============
--}}
{{> charcoal/admin/template/inc.header }}
<div class="o-background -fixed u-background-lightblue"{{# backgroundImage }} style="background-image: url({{ . }});"{{/ backgroundImage }}>
{{# backgroundVideo }}
<video class="embedded-video horizontal" muted preload="auto" autoplay loop>
<source src="{{ . }}" type="video/mp4">
</video>
{{/ backgroundVideo }}
</div>
<div class="c-login">
<div class="c-login_panel">
<div class="c-login_header">
<div class="c-login_avatar">
<img class="c-login_avatar_image" src="{{ avatarImage }}">
</div>
</div>
<div class="text-center">
<h2>{{# _t }}auth.logout.title{{/ _t }}</h2>
<p>{{# _t }}You have safely logged out from Charcoal.{{/ _t }}</p>
<p>
<a href="{{ urlLogin }}" class="btn btn-primary">{{# _t }}Log In Again{{/ _t }}</a>
</p>
{{# returnToSiteLabel }}
<p class="small text-center">
<a href="{{ baseUrl }}" id="btn-backtosite">{{& . }}</a>
</p>
{{/ returnToSiteLabel }}
</div>
</div>
</div>
{{# addJsRequirement }}
<script rel="l10n">
{{> charcoal/admin/l10n/auth.js }}
</script>
{{/ addJsRequirement }}
{{> charcoal/admin/template/inc.footer }}