summaryrefslogtreecommitdiff
path: root/orig/pq-web/newguy.html
blob: 8c3a89967232e9a8b2a1b9db2ff041dffe2fd2c2 (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
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
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" type="image/x-icon" href="http://progressquest.com/favicon.ico">
<link rel="stylesheet" href="progros.css" type="text/css">
<link rel="stylesheet" href="newguy.css" type="text/css">
<title>Progress Quest - Roll One Up</title>
<script src="json2.js"></script>
<script src="jquery.js"></script>
<script src="config.js"></script>
<script src="newguy.js"></script>
<meta name="apple-mobile-web-app-capable" content="yes" />
<style>
input, button { display: inline; }

</style>
</head>

<body>

<br>

<div class="vbox window" id="newguy">

  <div id="titlebar">
    <img src="swords.gif">
    <span>Progress Quest - New Character</span>
    <a id="quit"><img src="closeup.png"></a>
  </div> 

  <div class="client">
  <div class="hbox">
    Name
    <input id="Name" spellcheck="false">
    <button id="RandomName">?</button>
  </div>

  <div class=hbox>

    <fieldset class="vbox groupbox" id="races">
      <legend>Race</legend>
    </fieldset>

    <div class=vbox>
      <div class=hbox>
        <fieldset class="vbox groupbox" id="classes">
          <legend>Class</legend>
        </fieldset>
        
        <fieldset class="vbox groupbox" id="stats">
          <legend>Stats</legend>
          
          <table>
            <tr> <th> STR <td id="STR">13</tr>
            <tr> <th> CON <td id="CON">23</tr>
            <tr> <th> DEX <td id="DEX">34</tr>
            <tr> <th> INT <td id="INT">12</tr>
            <tr> <th> WIS <td id="WIS">4</tr>
            <tr> <th> CHA <td id="CHA">12</tr>
            <tr> <th colspan=2> &nbsp; </tr>
            <tr> <th> Total <td id="Total">48</tr>
          </table>
          
          <br>
          <br>
          <br>
          <br>
          <br>
          <br>
          
          <center>
            <button id="Reroll">Roll</button> <br>
            <button id="Unroll" disabled>Unroll</button>
          </center>
          <br>
          
        </fieldset>
      </div>
      
      <div class=hbox style="text-align:right;padding-top:15px">
        <button id=Sold>Sold!</button>
      </div>
    </div>
  </div>
  </div>
</div>

</body>
</html>