backend/app/views/welcome.pug

47 lines
1.4 KiB
Plaintext
Raw Normal View History

2020-02-08 01:50:10 +00:00
html
head
title Welcome | #{_app.name}
2020-02-08 01:50:10 +00:00
style(type="text/css").
@import url('https://fonts.googleapis.com/css?family=Rajdhani');
html,
body {
height: 100%;
overflow-y: hidden;
background-color: #c7dbdf;
}
.flitter-container {
height: 60%;
display: flex;
align-items: center;
justify-content: center;
}
.flitter-image {
height: 150px;
}
.flitter-name {
font-family: "Rajdhani", sans-serif;
2020-02-08 01:50:10 +00:00
font-size: 50pt;
margin-left: 35px;
color: #00323d;
text-decoration: none;
}
.flitter-text {
font-family: "Rajdhani", sans-serif;
2020-02-08 01:50:10 +00:00
font-size: 24pt;
color: #00323d;
}
body
2020-02-08 01:50:10 +00:00
.flitter-container
2020-02-09 03:41:30 +00:00
img.flitter-image(src="/assets/logo/3x/logo3x.png")
2020-02-09 05:22:12 +00:00
a.flitter-name(href="/login" target="_blank") powered by #{_app.name}
2020-02-08 01:50:10 +00:00
if user
.flitter-container
p.flitter-text Welcome, #{user.uid}! <a href="/auth/logout">Log out.</a>
else
.flitter-container
p.flitter-text New to #{_app.name}? <a href="/login">Start here.</a>