Update biz_v.html
Browse files- biz_v.html +69 -4
biz_v.html
CHANGED
|
@@ -123,6 +123,67 @@ button:hover {
|
|
| 123 |
.block h2 {
|
| 124 |
text-align: center;
|
| 125 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 126 |
</style>
|
| 127 |
</head>
|
| 128 |
<body>
|
|
@@ -136,11 +197,15 @@ button:hover {
|
|
| 136 |
<input type="file" name="file" accept=".csv">
|
| 137 |
</div>
|
| 138 |
<div class="input-row">
|
| 139 |
-
<label>
|
| 140 |
-
|
|
|
|
|
|
|
| 141 |
</label>
|
| 142 |
-
<label>
|
| 143 |
-
|
|
|
|
|
|
|
| 144 |
</label>
|
| 145 |
</div>
|
| 146 |
<input id="uploadButton" type="submit" value="Загрузить пользователей">
|
|
|
|
| 123 |
.block h2 {
|
| 124 |
text-align: center;
|
| 125 |
}
|
| 126 |
+
|
| 127 |
+
/* Custom Checkbox Styles */
|
| 128 |
+
.container-checkbox {
|
| 129 |
+
display: block;
|
| 130 |
+
position: relative;
|
| 131 |
+
padding-left: 35px;
|
| 132 |
+
margin-bottom: 12px;
|
| 133 |
+
cursor: pointer;
|
| 134 |
+
font-size: 16px;
|
| 135 |
+
-webkit-user-select: none;
|
| 136 |
+
-moz-user-select: none;
|
| 137 |
+
-ms-user-select: none;
|
| 138 |
+
user-select: none;
|
| 139 |
+
}
|
| 140 |
+
|
| 141 |
+
.container-checkbox input {
|
| 142 |
+
position: absolute;
|
| 143 |
+
opacity: 0;
|
| 144 |
+
cursor: pointer;
|
| 145 |
+
height: 0;
|
| 146 |
+
width: 0;
|
| 147 |
+
}
|
| 148 |
+
|
| 149 |
+
.checkmark {
|
| 150 |
+
position: absolute;
|
| 151 |
+
top: 0;
|
| 152 |
+
left: 0;
|
| 153 |
+
height: 25px;
|
| 154 |
+
width: 25px;
|
| 155 |
+
background-color: #eee;
|
| 156 |
+
}
|
| 157 |
+
|
| 158 |
+
.container-checkbox:hover input ~ .checkmark {
|
| 159 |
+
background-color: #ccc;
|
| 160 |
+
}
|
| 161 |
+
|
| 162 |
+
.container-checkbox input:checked ~ .checkmark {
|
| 163 |
+
background-color: #4CAF50;
|
| 164 |
+
}
|
| 165 |
+
|
| 166 |
+
.checkmark:after {
|
| 167 |
+
content: "";
|
| 168 |
+
position: absolute;
|
| 169 |
+
display: none;
|
| 170 |
+
}
|
| 171 |
+
|
| 172 |
+
.container-checkbox input:checked ~ .checkmark:after {
|
| 173 |
+
display: block;
|
| 174 |
+
}
|
| 175 |
+
|
| 176 |
+
.container-checkbox .checkmark:after {
|
| 177 |
+
left: 9px;
|
| 178 |
+
top: 5px;
|
| 179 |
+
width: 5px;
|
| 180 |
+
height: 10px;
|
| 181 |
+
border: solid white;
|
| 182 |
+
border-width: 0 3px 3px 0;
|
| 183 |
+
-webkit-transform: rotate(45deg);
|
| 184 |
+
-ms-transform: rotate(45deg);
|
| 185 |
+
transform: rotate(45deg);
|
| 186 |
+
}
|
| 187 |
</style>
|
| 188 |
</head>
|
| 189 |
<body>
|
|
|
|
| 197 |
<input type="file" name="file" accept=".csv">
|
| 198 |
</div>
|
| 199 |
<div class="input-row">
|
| 200 |
+
<label class="container-checkbox">
|
| 201 |
+
Наличие WhatsApp
|
| 202 |
+
<input type="checkbox" name="verify_phone" value="1">
|
| 203 |
+
<span class="checkmark"></span>
|
| 204 |
</label>
|
| 205 |
+
<label class="container-checkbox">
|
| 206 |
+
Добавлять менеджера
|
| 207 |
+
<input type="checkbox" name="add_curator" value="1">
|
| 208 |
+
<span class="checkmark"></span>
|
| 209 |
</label>
|
| 210 |
</div>
|
| 211 |
<input id="uploadButton" type="submit" value="Загрузить пользователей">
|