feat: request access button on login page (mailto rgalyaviev)

This commit is contained in:
2026-05-08 12:59:15 +00:00
parent e516cc4aeb
commit b9f1e375d3
2 changed files with 18 additions and 0 deletions
+17
View File
@@ -950,3 +950,20 @@ button {
color: #4a7090;
line-height: 1.35;
}
.request-access-btn {
display: block;
text-align: center;
margin-top: 1rem;
padding: 0.6rem 1rem;
border-radius: 8px;
border: 1px solid rgba(255,255,255,.2);
color: #a0b8cc;
font-size: .88rem;
text-decoration: none;
transition: background .2s, color .2s;
}
.request-access-btn:hover {
background: rgba(255,255,255,.07);
color: #dce8f5;
}
+1
View File
@@ -23,6 +23,7 @@
<input type="password" name="password" placeholder="Введите пароль" required />
<button type="submit">Войти</button>
</form>
<a class="request-access-btn" href="mailto:rgalyaviev@mont.com?subject=%D0%94%D0%BE%D1%81%D1%82%D1%83%D0%BF%20%D0%BA%20%D0%BF%D0%BE%D0%BB%D0%B8%D0%B3%D0%BE%D0%BD%D1%83">Запросить доступ</a>
</section>
</main>
<footer class="login-made-by-wrap"><a class="made-by login-made-by" href="mailto:rgalyaviev@mont.com">Made by Galyaviev</a></footer>