Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shared/resources/apn/index.html
blob: 354c3d613f974ec3c33d751cc880e5e2341ebd9b (plain)
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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8"/>
    <title> APN Database </title>
    <script type="application/javascript" src="query.js"></script>
    <style type="text/css">
      html, body {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
      }
      textarea {
        margin: 2px;
      }
      body > textarea {
        position: absolute;
        width: 50%;
        height:    -moz-calc(100% - 10px);
        height: -webkit-calc(100% - 10px);
      }
      form {
        position: absolute;
        right: 2px;
        width:    -moz-calc(50% - 10px);
        width: -webkit-calc(50% - 10px);
        height: 90%;
      }
      form label {
        display: block;
        text-align: center;
        height: 25px;
        margin: 0;
      }
      form textarea {
        width: 100%;
        height:    -moz-calc(50% - 2px);
        height: -webkit-calc(50% - 2px);
      }
    </style>
  </head>
  <body>
    <textarea readonly></textarea>
    <form>
      <label> MCC: <input name="mcc" value="208"/> </label>
      <label> MNC: <input name="mnc" value="15" /> </label>
      <textarea readonly id="selection"></textarea>
      <textarea readonly id="preferences"></textarea>
    </form>
  </body>
</html>