forked from puddyput/toxme.se
-
Notifications
You must be signed in to change notification settings - Fork 6
/
add_ui.html
57 lines (57 loc) · 2.63 KB
/
add_ui.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tox ID Service</title>
<link href="/static/tox.css" rel="stylesheet" type="text/css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="/static/lookup.js"></script>
</head>
<body>
<!--[if lte IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<header class="header_nav">
<a class="icon" href="/" title="Tox"></a>
</header>
<article class="main_content">
<div class="chunk hello dark">
<p class="tagline">Add Yourself</p>
<p>
Use this to add your Tox ID to the public list.<br>
Note: If your client supports this, it's best to do it from within the client.<br>
Want to edit your entry? <a href="/edit_ui">Click here.</a>
</p>
<form class="addself_form" action="/add_ui" enctype="multipart/form-data" method="post">
<div class="formbit">
<label class="left" for="name">Name</label>
<input name="name" id="name" type="text" placeholder="John">
</div>
<div class="formbit">
<label class="left" for="tox_id">Tox ID</label>
<input name="tox_id" id="tox_id" type="text" placeholder="ABCDEF00...">
</div>
<div class="formbit">
<label class="left" for="bio">Bio</label>
<input name="bio" id="bio" type="text" placeholder="I am a...">
</div>
<div class="formbit">
<input name="privacy" id="privacy" type="checkbox">
<label for="privacy">Hide my name from the public list</label>
</div>
<div class="formbit">
<input type="submit" class="submit" value="Publish!">
</div>
</form>
</div>
<div id="footer" class="footer">
<p>
<small class="de-emphasize">Copyright © 2015 Tox Project. All rights reserved.</small>
<small class="de-emphasize"><a href="https://github.com/subliun/toxme">I'm open source!</a></small>
</p>
</div>
</article>
<script type="text/javascript">sc_init();</script>
</body>
</html>