IPass-GUI/src/index.html
Mystikfluu 3adc4fffde change settings href to settings.html
fix warning about interpretation of "settings"
2023-04-01 17:17:56 +02:00

42 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title id="pageTitle">IPass - x.x.x</title>
<script type="module" src="/main.js"></script>
<script type="module" src="/pwprompt.js"></script>
</head>
<body>
<h1 id="title">IPass</h1>
<div class="select">
<img src="/images/menu.png" width="50" height="50">
<div>
<div><a href="/settings.html"><img id="cogWImg" src="/images/settings.png" width="50" height="50" alt="Locked" title="Locked"></a></div>
<div><img alt="Lock" id="lockImg" src="/images/security_lock_locked.png" height=50 width=50></img></div>
</div>
</div>
<br>
<div id="table_div">
<div id="table_entries">
<div>Entry name</div>
<div class="entry_name" id="createEntry_name"><input type="text" placeholder="New Entry Name" tabindex="1"></div>
</div>
<div id="table_users">
<div>Username</div>
<div class="entry_user" id="createEntry_user"><input type="text" placeholder="New Username" tabindex="1"></div>
</div>
<div id="table_pwds">
<div>Password</div>
<div class="entry_pass" id="createEntry_pass"><input type="password" placeholder="New Password" tabindex="1"></div>
</div>
<div id="table_actions">
<div>Action</div>
<div class="button" id="createEntry_actions"><button tabindex="1">Create</button></div>
</div>
</div>
</body>
</html>