Layout for activation HTML templates
[gamestick-pjgsapi.git] / templates / activate-code.phtml
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3   <meta charset="utf-8"/>
4   <title>GameStick activation: Code</title>
5   <link rel="stylesheet" href="css/css.css">
6 </head>
7 <body>
8   <h1 id="logo_small"><a href="#">Game Stick</a></h1>
9   <div id="gs">
10
11     <div id="page_1" class="page">
12
13       <h2>Welcome</h2>
14
15       <div class="register_bar"><img style="width: 100%" src="img/register_bar.png">
16       </div>
17
18       <p>Almost there, just  few more steps and you will have activated your GameStick.</p>
19       <p>Please enter the code displayed on your TV screen below.</p>
20
21       <form id="code_form" method="post" action="activate.php">
22
23        <label for="code">Verification code:</label><br>
24        <input id="code_input" name="code" type="text" value="<?= htmlspecialchars($code) ?>"/>
25      </div>
26      <?php if ($error): ?>
27       <div>
28         <p class="error"><?= htmlspecialchars($error) ?></p>
29       </div>
30     <?php endif ?>
31
32     <button class="button" type="submit">Continue</button>
33   </form>
34 </div></div>
35
36
37
38 </body>
39 </html>
40