-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
24 lines (20 loc) · 1.11 KB
/
header.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<header>
<img id="logo" src="FILES/logo.png" alt="Logo" />
<nav>
<form id="control_form" method="POST" action="<?=INDEX_FILE?>">
<span class="yellow-on-black">Κινητο:</span>
<input type="text" name="phone" value="<?=$phone?>" <?=($phone == '')?'autofocus':''?>
pattern="(69\d{8})" required
title="Δεκαψήφιος αριθμός κινητού που ξεκινάει με 69." />
<span class="yellow-on-black">Κωδικος:</span>
<input type="text" name="code" value="<?=$code?>" <?=($phone == '')?'':'autofocus'?>
pattern="(\w{5})" required
title="Ο κωδικός ReloadIt αποτελείται από 5 αλφαρηθμητικούς χαρακτήρες." />
<button type="submit">Go!</button>
</form>
<button id="reset">Reset</button>
<label for="debug_checkbox">
<input id="debug_checkbox" type="checkbox"/>
Debug<sup>LIVE</sup></label>
</nav>
</header>