-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (112 loc) · 5.38 KB
/
index.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>First LabWork</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="main-header">
<div class="student">
Трофимов Владислав Дмириевич Группа: P3214 Вариант: 2484
</div>
<div class="git-logo-link">
<a href="https://github.com/viladit/webFirstLab" target="_blank">
<img src="sources/25231.png" width="5%">
</a>
</div>
</header>
<div class="wrapper">
<div class="grid">
<div class="container">
<div class="graph-container">
<img src="img/graph.png" alt="Graph Image" class="graphic">
</div>
</div>
<div class="container">
<form class="parameters" name="form">
<h3>Выберите значение X:</h3>
<table>
<tbody>
<tr>
<td><label>
<input id="button1" class="buttonX" type="button" name="x" value="-4"></label></td>
<td><label>
<input id="button2" class="buttonX" type="button" name="x" value="-3"></label></td>
<td><label>
<input id="button3" class="buttonX" type="button" name="x" value="-2"></label></td>
</tr>
<tr>
<td><label>
<input id="button4" class="buttonX" type="button" name="x" value="-1"></label></td>
<td><label>
<input id="button5" class="buttonX" type="button" name="x" value="0"></label></td>
<td><label>
<input id="button6" class="buttonX" type="button" name="x" value="1"></label></td>
</tr>
<tr>
<td><label>
<input id="button7" class="buttonX" type="button" name="x" value="2"></label></td>
<td><label>
<input id="button8" class="buttonX" type="button" name="x" value="3"></label></td>
<td><label>
<input id="button9" class="buttonX" type="button" name="x" value="4"></label></td>
</tr>
</tbody>
</table>
<h3>Введите значение Y:</h3>
<label>
<input id="textY" class="text-input" min="-3" max="5" maxlength="20" type="text" oninput="change_input_field(this, -2.9999, 4.9999, 0)" name="y" placeholder="(-3; 5)" size="15">
</label>
<h3>Выберите значение R:</h3>
<table>
<tbody>
<tr>
<td><label>
<input id="radio1" class="radioR" type="radio" name="r" value="1">1</label></td>
<td><label>
<input id="radio2" class="radioR" type="radio" name="r" value="2">2</label></td>
<td><label>
<input id="radio3" class="radioR" type="radio" name="r" value="3">3</label></td>
</tr>
<tr>
<td><label>
<input id="radio4" class="radioR" type="radio" name="r" value="4">4</label></td>
<td><label>
<input id="radio5" class="radioR" type="radio" name="r" value="5">5</label></td>
</tr>
</tbody>
</table>
<div class="action-buttons">
<button class="action-button" type="button" id="submit_request" name="check">
Check
</button>
<button class="action-button" type="submit" id="clear_table" name="clear" value="clear">
Clear
</button>
</div>
</form>
</div>
<div class="container">
<div class="result">
<table class="result-table" id="table">
<thead>
<tr>
<th colspan="1" style="width: 10%">X</th>
<th colspan="1" style="width: 10%">Y</th>
<th colspan="1" style="width: 5%">R</th>
<th colspan="1" style="width: 15%">Выполнен в</th>
<th colspan="1" style="width: 35%">Время выполнения</th>
<th colspan="1" style="width: 35%">Результат</th>
</tr>
</thead>
<tbody id="insertHere">
</tbody>
</table>
</div>
</div>
</div>
</div>
<script src="validate.js"></script>
</body>
</html>