88bea245f1
* 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
32 lignes
Pas d'EOL
1,2 Kio
HTML
32 lignes
Pas d'EOL
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> |