Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/templates/site/api/login.jet.html
Golumpa 88bea245f1 update login.jet.html (#1364)
* Add icon-user to nyacon font

* forgot to update font file versions

Some people will still get the old font files without the icon-user added to it

* update login.jet.html
2017-08-08 11:29:39 +02:00

32 lignes
1,2 Kio
HTML

{{import "layouts/partials/helpers/errors"}}
{{import "layouts/partials/helpers/csrf"}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login Page - Nyaa Pantsu Authentification API</title>
<link rel="stylesheet" type="text/css" href="/css/api.css">
</head>
<body>
<div class="container">
<img src="/img/logo.png" class="logo">
<div class="login-box">
<div class="box-header">
<h2>Page Authentification</h2>
</div>
<p>Please provide your login credentials before continuing</p>
{{ yield errors() }}
<label for="username">Username</label>
<br/>
<input class="textarea" type="text" name="username" placeholder="Username" />
<br/>
<label for="password">Password</label>
<br/>
<input class="textarea" type="password" name="password" placeholder="Password" /><br>
<br/>
{{ yield csrf_field() }}
<input class="submit" type="submit" />
</div>
</div>
</body>
</html>