-
Notifications
You must be signed in to change notification settings - Fork 1
/
client_Page.html
73 lines (60 loc) · 2.1 KB
/
client_Page.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- AppsScript file including -->
<?!= include('client_Core'); ?>
<?!= include('stylelinks'); ?> <!-- + -->
<?!= include('stylesheet'); ?> <!-- + -->
<?!= include('client_FormMethods'); ?>
<?!= include('module_client'); ?>
</head>
<body onload="initPage()">
<!--login "page"-->
<div class="mui-container-fluid" align="left">
<h1 id="header" class="headclass">Загрузка...</h1>
<form сlass="mui-form" id="backform" onsubmit="handleLogin(); return false;" autocomplete="off">
<input hidden="true" id="version" value="none">
<input hidden="true" id="tokenval" value="none">
<div class="mui-row">
<div class="mui-col-md-4">
<div class="mui-textfield">
<input type="text" id="jid" autofocus required>
<label>Введите фамилию судьи</label>
</div>
</div>
</div>
<div class="mui-row">
<div class="mui-col-md-4">
<div align="center">
<input type="submit" value="Далее" class="mui-btn mui-btn--primary">
</div>
<br>
</div>
</div>
</form>
</div>
<div id="mainlayer" hidden="true">
<div class="mui-container-fluid" align="left">
<!--customizable form parts here-->
<?!= include('module_form'); ?>
<!--structure for responses logging-->
<div class="mui-row">
<div class="mui-col-md-6">
<div align="center">
<p> Имя; задача; результат; статус; ссылка на удаление</p>
<ol reversed id="logslist">
</ol>
</div>
</div>
</div>
</div>
</div>
<div id="CustomAlert" hidden="true">
<div class="mui-container-fluid" align="left">
<h1>Выдайте вывод!</h1>
<button class="mui-btn mui-btn--primary" onclick="changeView('CustomAlert','mainlayer');">Продолжить</button>
</div>
</div>
</body>
</html>