Compare commits
16
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
554c614da9 | ||
|
|
e9cc231f48 | ||
|
|
131414c35b | ||
|
|
0b2cbf4d24 | ||
|
|
c6e59252b0 | ||
|
|
ad5c3ba552 | ||
|
|
58c74e3391 | ||
|
|
633171760a | ||
|
|
3b158d51b2 | ||
|
|
c88fe0a744 | ||
|
|
1ea0053142 | ||
|
|
aac9c8956e | ||
|
|
83bc553a45 | ||
|
|
873e60fc5f | ||
|
|
d4249d33ad | ||
|
|
0a3300e8d6 |
@@ -6,10 +6,14 @@
|
||||
{% endblock %}
|
||||
{% block content %}
|
||||
<div id="main">
|
||||
<div class="signup-container d-flex align-items-center justify-content-center">
|
||||
<div style="padding: 10px;min-width:300px;" class="ps-md-4 pe-md-4">
|
||||
<h1>Nexium</h1>
|
||||
<p>2018+ with freedom.</p>
|
||||
<div class="signup-wrapper" style="position:relative;">
|
||||
<!-- logo moved outside the signup card so it can overlap/escape the container -->
|
||||
<img src="/static/img/LoginLogo.png" alt="NEXIUM" class="logo-outside d-none d-lg-block" />
|
||||
<div class="signup-row">
|
||||
<div class="signup-card">
|
||||
<div class="signup-container d-flex align-items-center justify-content-center">
|
||||
<div style="padding: 10px;min-width:300px;" class="ps-md-4 pe-md-4">
|
||||
<p class="signup-subtitle">2018+ with freedom.</p>
|
||||
{% with messages = get_flashed_messages() %}
|
||||
{% if messages %}
|
||||
<div>
|
||||
@@ -41,7 +45,13 @@
|
||||
<p>Already have an account? <a href="/login">Login</a>
|
||||
</div>
|
||||
</div>
|
||||
<img style="aspect-ratio: 7/4;min-height: 400px;max-height: 550px;" class="d-lg-block d-none" src="/static/img/LoginImage2.png" alt="Signup Image">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="signup-visual d-none d-lg-block">
|
||||
<img style="width:100%;height:100%;object-fit:cover;min-height:400px;max-height:550px;" src="/static/img/LoginImage2.png" alt="Signup Image">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
@@ -53,7 +53,7 @@ body {
|
||||
}
|
||||
|
||||
.login-container img {
|
||||
min-width: 300px;
|
||||
min-width: 500px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -78,4 +78,25 @@ a:hover {
|
||||
text-decoration: none !important;
|
||||
color: rgb(3, 133, 255) !important;
|
||||
transition: 0.2s;
|
||||
}
|
||||
}
|
||||
|
||||
/* Logo outside the signup card so it can overlap/escape the container */
|
||||
.signup-wrapper { position: relative; }
|
||||
.logo-outside {
|
||||
position: absolute;
|
||||
right: -40px; /* push beyond the card -- adjust to taste */
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
max-width: 320px;
|
||||
width: auto;
|
||||
height: auto;
|
||||
z-index: 0; /* behind the card; use higher if you want it above */
|
||||
pointer-events: none;
|
||||
}
|
||||
.signup-container { position: relative; z-index: 1; }
|
||||
.signup-subtitle { text-align: center; margin-bottom: 12px; color: rgba(230,238,248,0.9); font-size: small; }
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.logo-outside { display: none; }
|
||||
.signup-container { min-width: 320px; }
|
||||
}
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 111 KiB After Width: | Height: | Size: 202 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 111 KiB |
Reference in New Issue
Block a user