summaryrefslogtreecommitdiff
path: root/src/reset.html
blob: 5200b934af28105365066ccca2c23437f8ff543a (plain) (blame)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!doctype html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <title>The Mana World</title>
        <style>
            * {
              margin: 0;
              padding: 0;
              box-sizing: border-box;
              -webkit-box-sizing: border-box;
              -moz-box-sizing: border-box;
              -webkit-font-smoothing: antialiased;
              -moz-font-smoothing: antialiased;
              -o-font-smoothing: antialiased;
              font-smoothing: antialiased;
              text-rendering: optimizeLegibility;
            }

            body {
              font-family: "Roboto", Helvetica, Arial, sans-serif;
              font-weight: 100;
              font-size: 12px;
              line-height: 30px;
              color: #777;
              background: rgba(0, 0, 0, 0.6);
            }

            .container {
              max-width: 400px;
              width: 100%;
              margin: 0 auto;
              position: relative;
            }

            .container > form .button {
              font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
              -webkit-appearance: button;
              -moz-appearance: button;
              appearance: button;
              display: block;
              text-align: center;
              text-decoration: none;
            }

            .container > form {
              background: #F9F9F9;
              padding: 25px;
              margin: 150px 0;
              box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
            }

            .container > form h3 {
              display: block;
              font-size: 30px;
              font-weight: 300;
              margin-bottom: 10px;
            }

            .container > form h4 {
              margin: 5px 0 15px;
              display: block;
              font-size: 13px;
              font-weight: 400;
            }

            fieldset {
              border: medium none !important;
              margin: 0 0 10px;
              min-width: 100%;
              padding: 0;
              width: 100%;
            }

            .container > form .button {
              cursor: pointer;
              width: 100%;
              border: none;
              background: rgba(0, 0, 0, 0.6);
              color: #FFF;
              margin: 0 0 5px;
              padding: 10px;
              font-size: 15px;
            }

            .container > form .button:hover {
              background: rgba(0, 0, 0, 0.9);
              -webkit-transition: background 0.3s ease-in-out;
              -moz-transition: background 0.3s ease-in-out;
              transition: background-color 0.3s ease-in-out;
            }

            .container > form .button:active {
              box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
            }

            .container > form input:focus {
              outline: 0;
              border: 1px solid #aaa;
            }

            .warning {
                color: #fff;
                margin: 1em;
                display: inline-block;
                background: orangered;
                padding: 1em;
                border: 3px yellow dashed;
            }
        </style>
    </head>
    <body>
        <noscript>
            <div class="warning">
                <h1>Javascript is required for this page.</h1>
                <!-- link to license -->
                <!-- link to source code -->
            </div>
        </noscript>

        <div class="container">
            <form>
                <h3>The Mana World</h3>
                <h4>Account recovery: please select</h4>
                <br>
                <fieldset>
                    <div>
                        <a class="button" href="/recover/password">I forgot my password</a>
                    </div>
                </fieldset>
                <fieldset>
                    <div>
                        <a class="button" href="/recover/username">I forgot my user name</a>
                    </div>
                </fieldset>
                <fieldset>
                    <div>
                        <a class="button" href="https://forums.themanaworld.org/viewtopic.php?f=20&t=7559">My account is banned</a>
                    </div>
                </fieldset>
                <fieldset>
                    <div>
                        <a class="button" href="https://forums.themanaworld.org/viewtopic.php?f=20&t=6472">My account was compromised</a>
                    </div>
                </fieldset>
                <fieldset>
                  <div>
                      <a class="button" href="https://forums.themanaworld.org/viewforum.php?f=3">I need help with something else</a>
                  </div>
              </fieldset>
            </form>
        </div>
    </body>
</html>