-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.htm
49 lines (49 loc) · 1.34 KB
/
index.htm
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
<!DOCTYPE html>
<html style="color:#000;background-color:hsl(0,0%,30%)">
<head>
<title>uTox</title>
<style>
input{
padding:6px 8px;
border:1px solid;
border-color:hsla(210,54%,20%,.15) hsla(210,54%,20%,.17) hsla(210,54%,20%,.2);
}
a{
color:white
}
input[type="text"]{
background:hsla(0,0%,100%,.9)padding-box;
border-radius:2.5px 0 0 2.5px;
width:470px
}
input[type="submit"]{
background:linear-gradient(hsla(0,0%,100%,.8),hsla(0,0%,100%,.1))padding-box;
border-radius:0 2.5px 2.5px 0;
cursor:pointer;
position:relative;
}
input[type="submit"]::-moz-focus-inner{
padding:0;
border:0 none;
}
</style>
</head>
<body style="margin:0">
<div style="text-align:center">
<a href="/"><img style="margin:3px 0 6px;border-style:none" src="logo.png"/></a>
<div>
<form action="/" style="display:inline">
<input type="text" name="name" placeholder="Name" maxlength="32" autofocus/>
<br/>
<input type="text" name="id" placeholder="Tox ID" maxlength="76" autofocus/>
<br/>
<input type="submit" value="Register"/>
</form>
</div>
<h3 style="height:40px">*</h3>Project Links:<br/>
<br/><a href="https://github.com/notsecure/tox-dns">https://github.com/notsecure/tox-dns</a>
<br/><a href="https://github.com/notsecure/uTox">https://github.com/notsecure/uTox</a>
<br/><a href="https://github.com/irungentoo/ProjectTox-Core">https://github.com/irungentoo/ProjectTox-Core</a>
</div>
</body>
</html>