22 lines
707 B
HTML
22 lines
707 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="credentials.css"/>
|
|
</head>
|
|
|
|
<body onload="loadCreds()">
|
|
<h4>BME Logginer</h4>
|
|
<form action="" name="credentials">
|
|
<input type="text" id="user" placeholder="Felhasználónév" \><br>
|
|
<input type="password" id="passwd" placeholder="Jelszó"\><br>
|
|
<span><input type="checkbox" id="isMS"/> Microsoft bejelentkezés<br></span>
|
|
<input type="email" id="msemail" placeholder="Microsoft email cím" style="display: none"\><br>
|
|
<input type="submit" value="Mentés">
|
|
</form>
|
|
<p>Figyelem: A megjegyzési adatok csak lokálisan tárolódnak</p>
|
|
<script src="credentials.js"></script>
|
|
</body>
|
|
|
|
</html>
|