-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (127 loc) · 5.21 KB
/
Copy pathindex.html
File metadata and controls
140 lines (127 loc) · 5.21 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<html>
<head>
<title> index </title>
<!-- CSS only -->
<script src="js/index.js" defer></script>
<link href="/node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="/node_modules/bootstrap/dist/js/bootstrap.min.js" ></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container mt-4 mb-4">
<!--
<form id="myform" class="mb-4" >
<div class="mb-3">
<label for="name" class="form-label"> Как вас зовут </label>
<input class="form-control" type="text" name="name" placeholder="Jone Dow">
</div>
<div class="mb-3">
<label for="num1" class="form-label"> Число 1 </label>
<input class="form-control" type="text" name="num1" placeholder="">
</div>
<div class="mb-3">
<label for="num2" class="form-label"> Число 2 </label>
<input class="form-control" type="text" name="num2" placeholder="">
</div>
<div class="mb-3">
<label for="symbol" class="form-label"> Число 2 </label>
<select class="form-select" size="1" name="symbol" >
<option value="+" SELECTED>+</option>
<option value="-">-</option>
<option value="*">*</option>
<option value="/">/</option>
</select>
</div>
<input type="submit" value="Отправить" class="btn btn-primary">
</form>
<hr>
<h3> Високосный год </h3>
<form id="getYear" class="mb-4" >
<div class="mb-3">
<label for="name" class="form-label"> Введите год </label>
<input class="form-control" type="number" min="0000" max="9999" step="1" value="2022" name="year"/>
</div>
<input type="submit" value="Отправить" class="btn btn-primary">
</form>
<div id="getYearResult" class="thumbnail" style="display: none"> </div>
-->
<br>
<hr>
<!--
<h3>Функции </h3>
<form id="name" class="mb-4" >
<div class="mb-3">
<label for="name" class="form-label"> Введите имя </label>
<input class="form-control" type="text" name="name"/>
</div>
<input type="submit" value="Отправить" class="btn btn-primary">
</form>
-->
</div>
<!--
-->
<!-- Интервал -->
<!--
<div class="container" >
<div id="timer"> 0 </div>
<span id="hours"> </span> : <span id="min"> </span>
</div>
-->
<!-- Счетчик -->
<!--
<div class="m-4 row" id="counter">
<input type="button" value="-" name="minus" class="btn btn-sm btn-warning col-2">
<span class="col-2 text-center" id="counterResult"> 0 </span>
<input type="button" name="minus" value="+" class="btn btn-sm btn-success col-2">
</div>
-->
<!-- User from promise -->
<<!--div class="container m-4 row">
<button class="btn btn-success btn-sm col-4 mb-4" id="change_user"> Получить супер пользователя </button>
<div class="col-12">
<img id="image" src="" class="img-thumbnail col" alt="...">
<div class="col">
<div id="name"> </div>
<div id="email"> </div>
</div>
</div>
</div>
-->
<!--
<div class="container m-4 row">
<div class="" > Контекст меню </div>
<button class="btn btn-success btn-sm col-4 mb-4" id="clicker">
Кликни меня
</button>
<div class="text-no-copy">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Atque eaque fugit in nesciunt porro sit, suscipit? Adipisci asperiores consectetur deleniti dolores eaque iste libero neque, nostrum provident temporibus. Incidunt, modi.
</div>
<ul class="mt-4" id="uls">
<li> Foo </li>
<li> Bar </li>
<li> Baz </li>
<li> Jango </li>
</ul>
</div>
-->
<div class="container">
<form action="#" id="localStorage">
<div class="col-3">
<label for="name"> Name </label>
<input type="text" name="name" class="form-control" required>
</div>
<div class="col-3 mt-2">
<label for="email"> Email </label>
<input type="email" name="email" class="form-control" required>
</div>
<div class="col-3 mt-2">
<label for="password"> Password </label>
<input type="password" name="password" class="form-control" required>
</div>
<input class="btn btn-sm btn-success" type="submit" value="отправить">
</form>
</div>
</body>
<!--<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.5/dist/umd/popper.min.js" integrity="sha384-Xe+8cL9oJa6tN/veChSP7q+mnSPaj5Bcu9mPX5F5xIGE0DVittaqT5lorf0EI7Vk" crossorigin="anonymous"></script>-->
<!--<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.min.js" integrity="sha384-kjU+l4N0Yf4ZOJErLsIcvOU2qSb74wXpOhqTvwVx3OElZRweTnQ6d31fXEoRD1Jy" crossorigin="anonymous"></script>-->
</html>