Nativefier/app/components/login/login.html

24 lines
505 B
HTML
Raw Normal View History

2016-01-21 19:39:52 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
</head>
<body>
<form id="login-form">
<div>
<label for="username-input">Username:</label>
<input type="text" id="username-input"/>
</div>
<div>
<label for="password-input">Password:</label>
<input type="password" id="password-input"/>
</div>
<div>
<button id="submit-form-button" type="submit">Send your message</button>
</div>
</form>
<script src="login.js"></script>
</body>
</html>