Делаем подарки
This commit is contained in:
parent
23dd65b366
commit
1e313fef33
14
presents.php
14
presents.php
@ -33,17 +33,18 @@ require_once 'functions.php';
|
||||
|
||||
label.present > input + img { /* IMAGE STYLES */
|
||||
cursor: pointer;
|
||||
border: 2px solid transparent;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
label.present > input:checked + img { /* (RADIO CHECKED) IMAGE STYLES */
|
||||
border: 2px solid #f00;
|
||||
border: 1px solid darkred;
|
||||
background: lightcoral;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Магазин подарков</h1>
|
||||
|
||||
Выберите подарок
|
||||
<?php
|
||||
if (!empty($_POST['present'])) {
|
||||
if (empty($_POST['to_login'])) return 'Получатель не указан!';
|
||||
@ -96,9 +97,12 @@ if (!empty($_POST['present'])) {
|
||||
<label><input type=radio name=from value=0 checked> <?= $user['login'] ?></label><br>
|
||||
<label><input type=radio name=from value=1> анонимно</label><br>
|
||||
<label><input type=radio name=from value=2> от имени клана</label><br>
|
||||
Долговечность подарка (5кр в день):<br>
|
||||
<input type="number" name="days" placeholder="Количество дней">
|
||||
<p>
|
||||
<button>Подарить</button>
|
||||
</p>
|
||||
<input type="hidden" name="flower" id="flower" value="">
|
||||
|
||||
<input type="hidden" name="flower" id="flower" value="">
|
||||
<table class="zebra" width=100% cellspacing="1" cellpadding="2"
|
||||
bgcolor="#A5A5A5">
|
||||
<?php
|
||||
|
Loading…
Reference in New Issue
Block a user