Делаем подарки

This commit is contained in:
Igor Barkov [iwork] 2019-01-28 15:34:03 +02:00
parent 5834b58783
commit b9f4935841

View File

@ -98,7 +98,7 @@ if (!empty($_POST['present'])) {
<label><input type=radio name=from value=1> анонимно</label><br>
<label><input type=radio name=from value=2> от имени клана</label><br>
Долговечность подарка (5кр в день):<br>
<input name="days" onkeyup="calc()" placeholder="Количество дней"> Цена: <span id="price"></span>
<input name="days" placeholder="Количество дней">
<p>
<button>Подарить</button>
@ -137,11 +137,5 @@ if (!empty($_POST['present'])) {
</td>
</tr>
</table>
<script>
function calc() {
var num = document.getElementById("days").value;
document.getElementById("price").innerHTML = num * 5;
}
</script>
</body>
</html>