<!DOCTYPE html>
<html lang="en">
<head>
<title>ElBanko</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="./style.css">
<!-- Manifest -->
<link rel="manifest" href="./manifest.json">
</head>
<body>
<h1>
Bank Demo
</h1>
<p>
<center>
<form>
<input type="text" placeholder="username" />
<input type="password" placeholder="password" />
<input type="submit" value="submit" />
</form>
</center>
</p>
<!-- Install/Share buttons, disabled by default -->
<div id="installContainer">
<button id="butInstall" type="button" disabled>
Install
</button>
</div>
<!-- import the webpage's javascript file -->
<script src="./script.js"></script>
</body>
</html>