c3d1adddc2
Build and Deploy / build-and-deploy (push) Successful in 47s
- Go html/template rejects <style> blocks and inline style attributes when template expressions are present in URL/CSS contexts - Move all inline CSS to static/auth.css, static/episode.css, static/dashboard.css - Serve static files from embedded FS via /static/ handler - Fix missing </div> in episode form audio file group
40 lines
1.5 KiB
HTML
40 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Podstalk — Sign In</title>
|
|
<link rel="stylesheet" href="https://unpkg.com/neobrutalismcss@latest" />
|
|
<link rel="stylesheet" href="/static/auth.css" />
|
|
</head>
|
|
<body>
|
|
<nav class="nb-navbar" role="navigation" aria-label="Main navigation">
|
|
<a href="/" class="nb-navbar-brand" aria-label="Go to homepage">Podstalk</a>
|
|
<ul class="nb-navbar-nav" role="menubar">
|
|
<li class="nb-navbar-item" role="none">
|
|
<a href="/signup" class="nb-navbar-link" role="menuitem">Sign Up</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<div class="container">
|
|
{{if .Error}}<div class="flash flash-error">{{.Error}}</div>{{end}}
|
|
<h2>Sign In</h2>
|
|
<p>Sign in to manage your podcast episodes.</p>
|
|
|
|
<form method="post" action="/signin">
|
|
<div class="nb-form-group">
|
|
<label for="email">Email</label>
|
|
<input type="email" id="email" name="email" class="nb-input blue" required autofocus />
|
|
</div>
|
|
<div class="nb-form-group">
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password" class="nb-input blue" required />
|
|
</div>
|
|
<div class="form-actions">
|
|
<button type="submit" class="nb-button blue">Sign In</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|