<form action="/echo" method="post" oninput="out.value=rating.value">
<fieldset>
<legend>Личные данные</legend>
<div class="half-width">
<label for="id">ID отзыва</label>
<input type="text" value="12345" name="id-1" id="id" disabled>
</div>
<div class="half-width">
<label for="name">Имя путешественника</label>
<input type="text" value="Кекс" name="name-1" id="name" required>
</div>
</fieldset>
<fieldset>
<legend>Отзыв о поездке</legend>
<div class="half-width">
<label for="country">Страна визита</label>
<input type="search" name="country-1" id="country" value="Норвегия">
</div>
<div class="half-width">
<label for="city">Город</label>
<select name="city-1" id="city">
<option value="Осло">Осло</option>
</select>
</div>
<div class="half-width">
<label for="rating">Оценка поездки</label>
0 <input type="range" name="raiting-1" id="rating" min="0" max="10" step="1" value="10"> 10 </div>
<div class="half-width output-area">
<output name="out">10</output>
</div>
<label for="review">Текст отзыва</label>
<textarea name="review-1" id="review" rows="5">Это было просто мяу!</textarea>
</fieldset>
<fieldset>
<legend>Оценка отеля</legend>
<div class="half-width">
<label for="hotel">Название отеля</label>
<input type="text" name="hotel-1" id="hotel" pattern="pattern="[A-Za-z\s]+"" placeholder="Название по-английски">
</div>
<div class="half-width">
<label for="arrival_date">Дата въезда</label>
<input type="text" name="arrival_date-1" id="arrival_date" pattern="[0-9]{2}-[0-9]{2}-[0-9]{4}"" placeholder="В формате дд-мм-гггг">
</div>
<div class="one-third-width">
<label for="color"> Цвет кроватки</label>
<input type="color" name="color-1" id="color" value="#FF0000">
</div>
<div class="two-third-width">
<label for="dish_rating">Оценка обедов</label>
<select id="dish_rating" name="dish_rating-1">
<option> Подушечки оближешь </option>
<option> Не оближешь</option>
</select>
</div>
<label for="fish">Самая вкусная рыба</label>
<select size="5" id="fish" name="fish-1" multiple>
<option selected>Норвежский лосось</option>
<option>Зубатка</option>
<option selected>Морской окунь</option>
<option>Карась</option>
<option>Зеркальный карп</option>
</select>
</fieldset>
<div class="buttons">
<input type="submit" name="buttons-1" value="Оценить">
<input type="reset" name="buttons-2" value="Сбросить">
</div>
</form>
</main>
<footer class="page-footer"></footer>
</body>
1 лайк