def6a13782
paste-Listener am Formular übernimmt ein Clipboard-Bild in den File-Input (via DataTransfer), benennt es zu zwischenablage.<ext> und zeigt einen grauen Hinweis über dem Datei-Input. Kein Bild -> normaler Text-Paste. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
65 lines
2.2 KiB
HTML
65 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Kontrollverlust</title>
|
|
<link rel="stylesheet" href="/css/app.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav id="legal">
|
|
<a href="/static/docs/impressum.html">Impressum</a> -
|
|
<a href="/static/docs/datenschutz.html">Datenschutz</a> -
|
|
<a href="/static/docs/beitragsordnung.html">Beitragsordnung</a>
|
|
</nav>
|
|
<a href="/"><h1>Kontrollverlust</h1></a>
|
|
<p id="stats" class="tagline"></p>
|
|
<div id="headerbar"></div>
|
|
</header>
|
|
|
|
<main>
|
|
<!-- Login / Registrierung -->
|
|
<section id="auth-box">
|
|
<form id="login-form">
|
|
<h2>Login</h2>
|
|
<input name="user" placeholder="Nutzername" autocomplete="username">
|
|
<input name="pass" type="password" placeholder="Passwort" autocomplete="current-password">
|
|
<input name="timeout" type="hidden" value="86400">
|
|
<button type="submit">Einloggen</button>
|
|
<p class="muted">Noch kein Konto? <a href="#" id="show-register">Registrieren</a></p>
|
|
</form>
|
|
|
|
<form id="register-form" hidden>
|
|
<h2>Registrieren</h2>
|
|
<input name="user" placeholder="Nutzername" autocomplete="username">
|
|
<input name="pass1" type="password" placeholder="Passwort" autocomplete="new-password">
|
|
<input name="pass2" type="password" placeholder="Passwort wiederholen" autocomplete="new-password">
|
|
<button type="submit">Konto erstellen</button>
|
|
<p class="muted">Schon registriert? <a href="#" id="show-login">Zum Login</a></p>
|
|
</form>
|
|
|
|
<p class="msg" id="auth-msg"></p>
|
|
</section>
|
|
|
|
<!-- Neuer Beitrag -->
|
|
<section id="compose" hidden>
|
|
<form id="entry-form">
|
|
<textarea name="content" rows="4" maxlength="1000" placeholder="Was gibt's Neues?"></textarea>
|
|
<p class="muted" id="paste-msg"></p>
|
|
<input name="file" type="file" accept="image/*">
|
|
<button type="submit">Posten</button>
|
|
</form>
|
|
<p class="msg" id="entry-msg"></p>
|
|
</section>
|
|
|
|
<!-- Feed -->
|
|
<section id="feed"></section>
|
|
<div id="sentinel"></div>
|
|
</main>
|
|
|
|
<script src="/js/feed.js"></script>
|
|
<script src="/js/app.js"></script>
|
|
</body>
|
|
</html>
|