DEV_1
This commit is contained in:
@ -7,5 +7,7 @@
|
||||
<body>
|
||||
<h1><%= title %></h1>
|
||||
<p>Welcome to <%= title %></p>
|
||||
<button id="logout">Deconnexion</button>
|
||||
<script src="/javascripts/dashboard.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
37
views/login.ejs
Normal file
37
views/login.ejs
Normal file
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Neutron - Login</title>
|
||||
<script src="neutron.bundle.js"></script>
|
||||
<link rel='stylesheet' href='/stylesheets/style.css'>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
</head>
|
||||
<body>
|
||||
<div class="content">
|
||||
<div class="box mx-auto">
|
||||
<img alt="logo" class="title w-100" src="/images/logo.png">
|
||||
<form>
|
||||
<div class="row inp">
|
||||
<label class="col-lg-6" for="username">Nom d'utilisateur</label>
|
||||
<input class="col-lg-6" id="username" type="text">
|
||||
</div>
|
||||
<div class="row inp">
|
||||
<label class="col-lg-6" for="pasoswrd">Mot de passe</label>
|
||||
<input class="col-lg-6" id="password" type="password">
|
||||
</div>
|
||||
</form>
|
||||
<div>
|
||||
<input id="remindus" type="checkbox">
|
||||
<label for="remindus">Resté connecté</label>
|
||||
</div>
|
||||
|
||||
<button id="loginButton">Connexion</button>
|
||||
<p id="info"><%- error %></p>
|
||||
<p>Pas de compte pour se connecter, demande à Raphix !</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<script src="/javascripts/loginscript.js"></script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user