mirror of
https://github.com/ghostersk/gowebmail.git
synced 2026-04-17 16:46:01 +01:00
update name, project refference and synchronization
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{{template "base" .}}
|
||||
{{define "title"}}GoMail Admin{{end}}
|
||||
{{define "title"}}GoWebMail Admin{{end}}
|
||||
{{define "body_class"}}admin-page{{end}}
|
||||
{{define "body"}}
|
||||
<div class="admin-layout">
|
||||
@@ -7,7 +7,7 @@
|
||||
<div class="logo-area">
|
||||
<a href="/">
|
||||
<div class="logo-icon"><svg viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg></div>
|
||||
<span class="logo-text">GoMail</span>
|
||||
<span class="logo-text">GoWebMail</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="admin-nav">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{{template "base" .}}
|
||||
{{define "title"}}GoMail{{end}}
|
||||
{{define "title"}}GoWebMail{{end}}
|
||||
{{define "body_class"}}app-page{{end}}
|
||||
|
||||
{{define "body"}}
|
||||
@@ -9,9 +9,9 @@
|
||||
<div class="sidebar-header">
|
||||
<div class="logo">
|
||||
<div class="logo-icon"><svg viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg></div>
|
||||
<span class="logo-text">GoMail</span>
|
||||
<span class="logo-text"><a href="/">GoWebMail</a></span>
|
||||
</div>
|
||||
<button class="compose-btn" onclick="openCompose()">+ Compose</button>
|
||||
<button class="compose-btn" onclick="openCompose()">+ New</button>
|
||||
</div>
|
||||
|
||||
<div class="nav-section">
|
||||
@@ -30,7 +30,7 @@
|
||||
<div class="sidebar-footer">
|
||||
<div class="user-info">
|
||||
<span class="user-name" id="user-display">...</span>
|
||||
<a href="/admin" id="admin-link" style="display:none;font-size:11px;color:var(--accent);text-decoration:none">Admin</a>
|
||||
<a href="/admin" id="admin-link" style="display:none;font-size:11px;color:var(--accent);text-decoration:none">Server Administration</a>
|
||||
</div>
|
||||
<div class="footer-actions">
|
||||
<button class="icon-btn" id="accounts-btn" onclick="toggleAccountsMenu(event)" title="Manage accounts">
|
||||
@@ -308,5 +308,5 @@
|
||||
{{end}}
|
||||
|
||||
{{define "scripts"}}
|
||||
<script src="/static/js/app.js?v=11"></script>
|
||||
<script src="/static/js/app.js?v=12"></script>
|
||||
{{end}}
|
||||
|
||||
@@ -3,14 +3,14 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{block "title" .}}GoMail{{end}}</title>
|
||||
<title>{{block "title" .}}GoWebMail{{end}}</title>
|
||||
<link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/static/css/gomail.css?v=11">
|
||||
<link rel="stylesheet" href="/static/css/gowebmail.css?v=12">
|
||||
{{block "head_extra" .}}{{end}}
|
||||
</head>
|
||||
<body class="{{block "body_class" .}}{{end}}">
|
||||
{{block "body" .}}{{end}}
|
||||
<script src="/static/js/gomail.js?v=11"></script>
|
||||
<script src="/static/js/gowebmail.js?v=12"></script>
|
||||
{{block "scripts" .}}{{end}}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -1,21 +1,20 @@
|
||||
{{template "base" .}}
|
||||
{{define "title"}}GoMail — Sign In{{end}}
|
||||
{{define "title"}}GoWebMail — Sign In{{end}}
|
||||
{{define "body_class"}}auth-page{{end}}
|
||||
{{define "body"}}
|
||||
<div class="auth-card">
|
||||
<div class="logo">
|
||||
<div class="logo-icon"><svg viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg></div>
|
||||
<span class="logo-text">GoMail</span>
|
||||
<span class="logo-text">GoWebMail</span>
|
||||
</div>
|
||||
<h1>Welcome back</h1>
|
||||
<p class="subtitle">Sign in to your GoMail account</p>
|
||||
<p class="subtitle">Sign in to your Web Mail Client</p>
|
||||
<div id="err" class="alert error" style="display:none"></div>
|
||||
<form method="POST" action="/auth/login">
|
||||
<div class="field"><label>Username or Email</label><input type="text" name="username" placeholder="admin" required autocomplete="username"></div>
|
||||
<div class="field"><label>Password</label><input type="password" name="password" placeholder="••••••••" required autocomplete="current-password"></div>
|
||||
<button class="btn-primary" type="submit" style="width:100%;padding:13px;font-size:15px;margin-top:8px">Sign In</button>
|
||||
</form>
|
||||
<p style="font-size:12px;color:var(--muted);margin-top:16px;text-align:center">Default credentials: <strong>admin</strong> / <strong>admin</strong></p>
|
||||
</div>
|
||||
{{end}}
|
||||
{{define "scripts"}}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{{template "base" .}}
|
||||
{{define "title"}}GoMail — Two-Factor Auth{{end}}
|
||||
{{define "title"}}GoWebMail — Two-Factor Auth{{end}}
|
||||
{{define "body_class"}}auth-page{{end}}
|
||||
{{define "body"}}
|
||||
<div class="auth-card">
|
||||
<div class="logo">
|
||||
<div class="logo-icon"><svg viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg></div>
|
||||
<span class="logo-text">GoMail</span>
|
||||
<span class="logo-text">GoWebMail</span>
|
||||
</div>
|
||||
<h1>Two-Factor Auth</h1>
|
||||
<p class="subtitle">Enter the 6-digit code from your authenticator app</p>
|
||||
|
||||
Reference in New Issue
Block a user