Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
index.html 809 B
<!DOCTYPE html>
<html lang='en' prefix='og: https://ogp.me/ns#'>

<head>
    <meta charset='UTF-8'>
    <meta http-equiv='X-UA-Compatible' content='IE=edge'>
    <meta name='viewport' content='width=device-width, initial-scale=1.0'>
    <title>Krustacea - Admin Login</title>
    <link rel="stylesheet" href="/admin_app/style.css">
</head>

<body>
    <form id='admin-login-form'>
        <div class="input-group">
            <label for='username'>Admin Id</label>
            <input type='text' name='username' />
        </div>
        <div class="input-group">
            <label for='password'>Password</label>
            <input type='password' name='password' />
        </div>
        <input type='submit' value="Login" />
    </form>
</body>
<script src='/admin_app/login/index.js'></script>

</html>