Fix indentation and close tags in html templates and css
[gamestick-pjgsapi.git] / templates / activate-profile.phtml
index 370ab69a85356a0743639cdf53587cdeaff4e510..ad2620af4611a1164b76253369fb451f5953ae69 100644 (file)
 <html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-  <meta charset="utf-8"/>
-  <title>GameStick activation: Profile</title>
-  <link rel="stylesheet" href="css/css.css">
-</head>
-<body>
-  <h1 id="logo_small"><a href="#">Game Stick</a></h1>
-  <div id="gs" >
-
-    <div id="page_1" class="page">
-     <h2>PlayJam GameStick activation: Profile</h2>
-     <div class="register_bar"><img style="width: 100%" src="img/register_bar.png"></div>
-
-     <div class="prawy">
-      <p>Create your own unique PlayTag and choose a profile image to personalise your account</p>
-
-      <p>
-        Also you can sign yourself as a Founder.
-      </p>
-      <form method="post" action="activate.php">
-        <input type="hidden" name="code" value="<?= htmlspecialchars($code) ?>"/>
-
-        <?php if ($input['submit'] && count($errors)): ?>
-          <div style="color: red">
-            Errors:
-            <ul>
-              <?php foreach ($errors as $msg): ?>
+  <head>
+    <meta charset="utf-8"/>
+    <title>GameStick activation: Profile</title>
+    <link rel="stylesheet" href="css/css.css"/>
+  </head>
+  <body>
+    <h1 id="logo_small"><a href="#">Game Stick</a></h1>
+    <div id="gs" >
+
+      <div id="page_1" class="page">
+        <h2>PlayJam GameStick activation: Profile</h2>
+        <div class="register_bar"><img style="width: 100%" src="img/register_bar.png"/></div>
+
+        <div class="prawy">
+          <p>Create your own unique PlayTag and choose a profile image to personalise your account</p>
+
+          <p>
+            Also you can sign yourself as a Founder.
+          </p>
+          <form method="post" action="activate.php">
+            <input type="hidden" name="code" value="<?= htmlspecialchars($code) ?>"/>
+
+            <?php if ($input['submit'] && count($errors)): ?>
+            <div style="color: red">
+              Errors:
+              <ul>
+                <?php foreach ($errors as $msg): ?>
                 <li><?= htmlspecialchars($msg) ?></li>
-              <?php endforeach ?>
-            </ul>
-          </div>
-        <?php endif ?>
-
-        <div>
-          <label style="font-size: 16px;" for="gamerTag">PlayTag:</label>
-          <input style="float: right;" id="gamerTag" name="gamerTag" type="text"
-          value="<?= htmlspecialchars($input['gamerTag']) ?>"
-          pattern="[a-zA-Z0-9 ]+"
-          required=""
-          title="Allowed: A-Z, a-z, 0-9, space"
-          />
-        </div>
-
-        <div>
-          <label>
-            <input  id="founderFlag" name="founderFlag" type="checkbox"
-            value="1"
-            <?php if ($input['founderFlag']) { echo 'checked=""';} ?>
-            />
-            I am a founder
-          </label>
-        </div>
+                <?php endforeach ?>
+              </ul>
+            </div>
+            <?php endif ?>
+
+            <div>
+              <label style="font-size: 16px;" for="gamerTag">PlayTag:</label>
+              <input style="float: right;" id="gamerTag" name="gamerTag" type="text"
+                value="<?= htmlspecialchars($input['gamerTag']) ?>"
+                pattern="[a-zA-Z0-9 ]+"
+                required=""
+                title="Allowed: A-Z, a-z, 0-9, space"
+              />
+            </div>
 
-        <div>
-          <br>
-          <label style="font-size: 16px;" for="founderName">Founder name:</label>
-          <input style="float: right;" id="founderName" name="founderName" type="text"
-          value="<?= htmlspecialchars($input['founderName']) ?>"
-          pattern="[a-zA-Z0-9 ]*"
-          title="Allowed: A-Z, a-z, 0-9, space"
-          />
-        </div>
-        <br>
-        <label style="font-size: 14px;">Show games suitable for ages:</label><br>
-        <label>
-          <input type="radio" name="minAge" value="3"
-          <?php if ($input['minAge'] == 3) { echo 'checked=""';} ?>
-          />
-          3+
-        </label>
-
-        <label>
-          <input type="radio" name="minAge" value="7"
-          <?php if ($input['minAge'] == 7) { echo 'checked=""';} ?>
-          />
-          7+
-        </label>
-
-        <label>
-          <input type="radio" name="minAge" value="12"
-          <?php if ($input['minAge'] == 12) { echo 'checked=""';} ?>
-          />
-          12+
-        </label>
-
-        <label>
-          <input type="radio" name="minAge" value="17"
-          <?php if ($input['minAge'] == 17) { echo 'checked=""';} ?>
-          />
-          17+
-        </label>
-      </div>
-      <div name="lewy" style="width: 48%;">
-        <label>Avatar image:</label>
-        <div id="avatary"> <br>
-          <br>
+            <div>
+              <label>
+                <input  id="founderFlag" name="founderFlag" type="checkbox"
+                  value="1"
+                <?php if ($input['founderFlag']) { echo 'checked=""';} ?>
+                />
+                I am a founder
+              </label>
+            </div>
 
+            <div>
+              <br/>
+              <label style="font-size: 16px;" for="founderName">Founder name:</label>
+              <input style="float: right;" id="founderName" name="founderName" type="text"
+                value="<?= htmlspecialchars($input['founderName']) ?>"
+                pattern="[a-zA-Z0-9 ]*"
+                title="Allowed: A-Z, a-z, 0-9, space"
+              />
+            </div>
+            <br/>
 
-          <?php foreach ($avatars as $key => $smallImagePath): ?>
-            <br>
-            <div id="test">
+            <div>
+              <label style="font-size: 14px;">Show games suitable for ages:</label><br/>
               <label>
+                <input type="radio" name="minAge" value="3"
+                <?php if ($input['minAge'] == 3) { echo 'checked=""';} ?>
+                />
+                3+
+              </label>
 
+              <label>
+                <input type="radio" name="minAge" value="7"
+                <?php if ($input['minAge'] == 7) { echo 'checked=""';} ?>
+                />
+                7+
+              </label>
 
-
-                <img src="<?= htmlspecialchars($smallImagePath) ?>"
-                alt="Avatar <?= htmlspecialchars($key) ?>"
-                width="118" height="118"
+              <label>
+                <input type="radio" name="minAge" value="12"
+                <?php if ($input['minAge'] == 12) { echo 'checked=""';} ?>
                 />
-                <br>
-                <input style=" 
-                align-items: center;" type="radio" name="avatar" id="radioo" value="<?= htmlspecialchars($key) ?>"
-                <?php if ($input['avatar'] == $key) { echo 'checked=""';} ?>
+                12+
+              </label>
+
+              <label>
+                <input type="radio" name="minAge" value="17"
+                <?php if ($input['minAge'] == 17) { echo 'checked=""';} ?>
                 />
+                17+
               </label>
             </div>
-          <?php endforeach ?>
 
-        </div>
+            <div name="lewy" style="width: 48%;">
+              <label>Avatar image:</label>
+              <div id="avatary">
+                <br/>
+                <br/>
+
+
+                <?php foreach ($avatars as $key => $smallImagePath): ?>
+                <br/>
+                <div id="test">
+                  <label>
+                    <img src="<?= htmlspecialchars($smallImagePath) ?>"
+                      alt="Avatar <?= htmlspecialchars($key) ?>"
+                      width="118" height="118"
+                    />
+                    <br/>
+                    <input style="
+                      align-items: center;" type="radio" name="avatar" id="radioo"
+                      value="<?= htmlspecialchars($key) ?>"
+                    <?php if ($input['avatar'] == $key) { echo 'checked=""';} ?>
+                    />
+                  </label>
+                </div>
+                <?php endforeach ?>
+
+              </div>
+
+              <button style="float:right; " name="submit" value="1" type="submit">Submit</button>
+            </div>
+          </form>
 
-        <button style="float:right; " name="submit" value="1" type="submit">Submit</button>
+        </div>
       </div>
-    </form>
-
-  </div>
-</div> 
-</body>
+    </div>
+  </body>
 </html>