Onionr/onionr/static-data/www/friends/index.html

28 lines
1.1 KiB
HTML
Raw Normal View History

2019-02-21 20:25:45 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>
Onionr
</title>
<link rel='stylesheet' href='/shared/style/modal.css'>
<link rel='stylesheet' href='/shared/main/style.css'>
<link rel='stylesheet' href='/friends/style.css'>
</head>
<body>
<div class='content'>
<img class='logo' src='/shared/onionr-icon.png' alt='onionr logo'>
<span class='logoText'>Onionr Web Control Panel</span>
<h2>Friend Manager</h2>
<form id='addFriend' action='/' method='POST'>
<label>Friend ID: <input type='text' name='addKey' placeholder='public key/ID' required></label>
2019-02-22 21:04:03 +00:00
<label>Set Alias: <input type='text' name='data' placeholder='what to call them'></label>
<input type='submit' value='Add Friend' class='successBtn'>
2019-02-21 20:25:45 +00:00
</form>
2019-02-22 01:55:13 +00:00
<h2>Friend List:</h2>
<div id='friendList'>None Yet :(</div>
2019-02-21 20:25:45 +00:00
</div>
<script src='/shared/misc.js'></script>
<script src='/friends/friends.js'></script>
</body>
</html>