Advertisement
Guest User

default.html

a guest
Aug 3rd, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.03 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8" />
  5.     <title>Pathfinder_CharacterSheet</title>
  6.  
  7.     <!-- WinJS references -->
  8.     <link href="//Microsoft.WinJS.2.0/css/ui-dark.css" rel="stylesheet" />
  9.     <script src="//Microsoft.WinJS.2.0/js/base.js"></script>
  10.     <script src="//Microsoft.WinJS.2.0/js/ui.js"></script>
  11.  
  12.     <!-- Pathfinder_CharacterSheet references -->
  13.     <link href="/css/default.css" rel="stylesheet" />
  14.     <script src="/js/default.js"></script>
  15.     <script src="/js/buttons.js"></script>
  16. </head>
  17. <body>
  18.     <p>Content goes here</p>
  19.     <form>
  20.         <fieldset class="float">
  21.             <legend class="fieldHeader">Character Information</legend>
  22.             <table>
  23.                 <tr>
  24.                     <td class="formlabel">Name:</td>
  25.                     <td><input type="text" id="char_name" /></td>
  26.                     <td class="formlabel">Race:</td>
  27.                     <td><select id="char_race">  <option value="dwarf">Dwarf</option>  <option value="elf">Elf</option>  <option value="human">Human</option>  </select></td>
  28.                 </tr>
  29.                 <tr>
  30.                     <td class="formlabel">Gender:</td>
  31.                     <td><select id="char_gender">  <option value="male">Male</option>  <option value="female">Female</option>  </select></td>
  32.                     <td class="formlabel">Class:</td>
  33.                     <td><select id="char_race">  <option value="cleric">Cleric</option>  <option value="fighter">Fighter</option>  <option value="rogue">Rogue</option>  <option value="wizard">Wizard</option>  </select></td>
  34.                 </tr>
  35.                 <tr>
  36.                     <td class="formlabel">Alignment:</td>
  37.                     <td><select id="char_alignment">  <option value="lg">Lawful Good</option>  <option value="ng">Neutral Good</option>  <option value="cg">Chaotic Good</option>  <option value="ln">Lawful Neutral</option>  <option value="n">Neutral</option>  <option value="cn">Chaotic Neutral</option></select></td>
  38.                     <td></td>
  39.                     <td><button onclick="testSaveCharInfo()">Save</button></td>
  40.                 </tr>
  41.             </table>
  42.         </fieldset>
  43.         <fieldset class="float">
  44.             <legend class="fieldHeader">Level Progress and Health</legend>
  45.             <table>
  46.                 <tr>
  47.                     <td class="formlabel">Experience:</td>
  48.                     <td><input type="number" name="char_xp" /></td>
  49.                     <td class="formlabel">Health:</td>
  50.                     <td><input type="number" name="char_xp" /></td>
  51.                 </tr>
  52.                 <tr>
  53.                     <td></td>
  54.                     <td>
  55.                         <progress id="progExp" value="150" max="2000"></progress>
  56.                     </td>
  57.                     <td></td>
  58.                     <td>
  59.                         <progress id="progHealth" value="12" max="12"></progress>
  60.                     </td>
  61.                 </tr>
  62.             </table>
  63.         </fieldset>
  64.     </form>
  65. </body>
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement