🌐 Language update from LingoHub 🤖

Project Name: IPost
Project Link: https://translate.lingohub.com/ipost-dot-tk/dashboard/ipost
User: Florian Krottendorfer

Easy language translations with LingoHub 🚀
This commit is contained in:
Florian Krottendorfer
2022-09-28 18:32:27 +00:00
parent 8fe5a00164
commit 031a4f9f82
42 changed files with 1022 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<!doctype html><html lang="" dir="ltr"><head></head>
<body> <%- newrelic %> <link rel="stylesheet" href="/css/logon.css"/><script src="/js/warn_message.js" charset="utf-8"></script><script type="text/javascript">
function login() {
const pw = document.getElementById("pass").value
localStorage.setItem("decryption_key",pw)
//yes I know this is not secure, but at this point I think it'd be better to trust the client for end-to-end encryption
}
</script><script src="/js/addnavbar.js" charset="utf-8"></script><link rel="stylesheet" href="/css/global.css"/>
<header>
<h1>Anmelden</h1>
</header>
<main>
<form id="login_form" class="form_class" action="login" method="post">
<div class="form_div"><label>Username:</label><input id="user" class="field_class" name="user" type="text" placeholder="username" autofocus="" required=""/><label>Password:</label><input id="pass" class="field_class" name="pass" type="password" placeholder="password" required=""/><button class="submit_class" type="submit" form="login_form" onclick="return login()">Login</button></div>
<div class="info_div">
<p>Do you not have an account? <a href="register">Register now!</a></p>
</div>
</form>
</main>
<footer>
</footer>
</body>
</html>