mirror of
https://github.com/Crazyco-xyz/48hr.email.git
synced 2025-12-14 05:46:33 +01:00
No more using <br> tags for visual space. Lets do things properly
This commit is contained in:
parent
b348fcca93
commit
0eda44ea1c
5 changed files with 25 additions and 26 deletions
|
|
@ -69,6 +69,15 @@ text-muted {
|
|||
margin-top: -2rem
|
||||
}
|
||||
|
||||
.action-links {
|
||||
float: right;
|
||||
text-align: end;
|
||||
}
|
||||
|
||||
.action-links a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
/* Reset apple form styles */
|
||||
|
||||
|
|
@ -98,6 +107,10 @@ select:hover {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
#login h4 {
|
||||
margin-bottom: 6rem;
|
||||
}
|
||||
|
||||
#login fieldset {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
|||
|
|
@ -1,12 +1,9 @@
|
|||
{% extends 'layout.twig' %}
|
||||
|
||||
{% block body %}
|
||||
<div style="float: right; text-align: end;">
|
||||
<a href="/inbox/{{ address }}">
|
||||
← Return to inbox</a>
|
||||
<br>
|
||||
<a href="/logout">
|
||||
Logout</a>
|
||||
<div class="action-links">
|
||||
<a href="/inbox/{{ address }}">← Return to inbox</a>
|
||||
<a href="/logout">Logout</a>
|
||||
</div>
|
||||
<h1>{{message}}</h1>
|
||||
<h2>{{error.status}}</h2>
|
||||
|
|
|
|||
|
|
@ -7,11 +7,9 @@
|
|||
});
|
||||
</script>
|
||||
|
||||
<div style="float: right; text-align: end;">
|
||||
<a href="/inbox/{{ address }}/delete-all">
|
||||
Wipe Inbox</a><br>
|
||||
<a href="/logout">
|
||||
Logout</a>
|
||||
<div class="action-links">
|
||||
<a href="/inbox/{{ address }}/delete-all">Wipe Inbox</a>
|
||||
<a href="/logout">Logout</a>
|
||||
</div>
|
||||
<h1>{{ address }}</h1>
|
||||
{% for mail in mailSummaries %}
|
||||
|
|
|
|||
|
|
@ -2,14 +2,12 @@
|
|||
|
||||
{% block body %}
|
||||
|
||||
<div style="float: right; text-align: end;">
|
||||
<div class="action-links">
|
||||
<a href="/inbox/{{ example }}">Example Inbox</a>
|
||||
</div>
|
||||
<div id="login">
|
||||
<h1>Welcome!</h1>
|
||||
<h4>Here you can either create a new Inbox, or access your old one</h4>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
{% if userInputError %}
|
||||
<blockquote class="warning">
|
||||
|
|
|
|||
|
|
@ -2,18 +2,11 @@
|
|||
|
||||
{% block body %}
|
||||
|
||||
<div style="float: right; text-align: end;">
|
||||
<a href="/inbox/{{ address }}">
|
||||
← Return to inbox</a>
|
||||
<br>
|
||||
<a href="/inbox/{{ address }}/{{ uid }}/delete">
|
||||
Delete Email</a>
|
||||
<br>
|
||||
<a href="/inbox/{{ address }}/{{ uid }}/raw" target="_blank">
|
||||
View Raw</a>
|
||||
<br>
|
||||
<a href="/logout">
|
||||
Logout</a>
|
||||
<div class="action-links">
|
||||
<a href="/inbox/{{ address }}">← Return to inbox</a>
|
||||
<a href="/inbox/{{ address }}/{{ uid }}/delete">Delete Email</a>
|
||||
<a href="/inbox/{{ address }}/{{ uid }}/raw" target="_blank">View Raw</a>
|
||||
<a href="/logout">Logout</a>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="mail_body" style="padding-left:10%;">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue