-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
80 lines (70 loc) · 1.75 KB
/
index.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<html>
<head>
<meta charset="utf-8">
<title>Satan's Phone Number UX</title>
<script src="phonenumber.js"></script>
<style>
*{
font-family: "Times New Roman";
font-size:18px;
}
h2 {
border-style: dashed;
border-color: brown;
}
input[name='result'] {
display: block;
margin-top: 1em;
background: rgba(0, 0, 0, 0.1);
font-size:20px;
}
.right-to-left input {
direction: rtl;
unicode-bidi: bidi-override;
text-align: right;
font-size:20px;
}
::first-letter {
color: red;
font-weight: 900;
}
</style>
</head>
<body>
<br>
<!-- number selections -->
<div>
<h2>Please enter your phone number:</h2>
<form id="phonenumberform" action="https://httpbin.org/post" method="post">
<select name="digit1"></select>
<select name="digit2"></select>
<select name="digit3"></select>
<select name="digit4"></select>
<select name="digit5"></select>
<select name="digit6"></select>
<select name="digit7"></select>
<select name="digit8"></select>
<select name="digit9"></select>
<select name="digit10"></select>
<input type="text" name="result" readonly>
<input type="submit" value="Submit!">
</form>
<div>
<br>
<hr>
<br>
<!-- Right To lEft -->
<div class="right-to-left">
<h2>:ɿɘdmuИ ɘnoʜꟼ ɿuoy ɿɘƚnɘ ɘƨɒɘlꟼ</h2>
<form id="phonenumberform">
<input type="text" name="result2" id="rtlinput" maxlength="15"><div></div>
<input type="submit" value="Ƨudmiƚ" id="rtlsubmit">
</form>
</div>
<br><br>
<hr>
<footer>
Make it worst on <a href="https://github.com/uxhell/phonenumber">GitHub</a>
</footer>
</body>
</html>