You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Magister-Auto-Login/src/pages/popup.html

59 lines
1.6 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="@stylesheets/popup.css" />
<link rel="stylesheet" href="@stylesheets/materials-switches.css" />
<link rel="stylesheet" id="dark-mode-stylesheet" disabled href="@stylesheets/dark-mode.css" />
</head>
<body>
<input id="dark-mode" type="checkbox" class="darkcheck" />
<div class="d-flex align-items-center screen">
<div class="container fluid mt-3">
<div class="row"></div>
<div class="row">
<div class="col">
<label for="">School:</label>
<input
type="text"
class="form-control mb-3 login"
autofocus
name="school"
id="school"
placeholder="Vul je school in"
/>
<hr class="bg-light mb-3" />
<label for="">Gebruikersnaam:</label>
<input
type="text"
class="form-control mb-3 login"
autofocus
name="number"
id="number"
placeholder="Vul je gebruikersnaam in"
/>
<hr class="bg-light mb-3" />
<label for="">Wachtwoord:</label>
<input
type="password"
class="form-control mb-3 login"
name="password"
id="password"
placeholder="Vul je wachtwoord in"
/>
<hr class="bg-light mb-3" />
<button class="btn-primary btn float-right" id="save">Opslaan</button>
<div class="material-switch pull-right enable">
<input id="switch" type="checkbox" />
<label for="switch" class="label-primary"></label>
</div>
</div>
</div>
</div>
</div>
<script src="@dark-mode.js"></script>
<script src="@save.js"></script>
</body>
</html>