-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 727 Bytes
/
index.html
File metadata and controls
28 lines (26 loc) · 727 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mini-Framework</title>
</head>
<body>
<div data-calculator>
<form data-page-name="page">
<input type="text" name="x" data-storagable="x">
+ sin
<input type="text" name="y" data-storagable="y">
<div data-computable="{{x}} + sin({{y}})"></div>
<input type="submit" value="Далее" data-navigate-to="page2">
</form>
<form data-page-name="page2">
<input type="text" name="x2" data-storagable="x2">
-
<input type="text" name="y2" data-storagable="y2">
<div data-computable="{{x2}} - {{y2}}"></div>
<input type="submit" value="Окончить рассчет"/>
</form>
</div>
<script src="main.js"></script>
</body>
</html>