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

This commit is contained in:
Igor Barkov [iwork] 2019-01-28 14:47:42 +02:00
parent 23dd65b366
commit 1e313fef33

View File

@ -33,17 +33,18 @@ require_once 'functions.php';
label.present > input + img { /* IMAGE STYLES */ label.present > input + img { /* IMAGE STYLES */
cursor: pointer; cursor: pointer;
border: 2px solid transparent; border: 1px solid transparent;
} }
label.present > input:checked + img { /* (RADIO CHECKED) IMAGE STYLES */ label.present > input:checked + img { /* (RADIO CHECKED) IMAGE STYLES */
border: 2px solid #f00; border: 1px solid darkred;
background: lightcoral;
} }
</style> </style>
</head> </head>
<body> <body>
<h1>Магазин подарков</h1> <h1>Магазин подарков</h1>
Выберите подарок
<?php <?php
if (!empty($_POST['present'])) { if (!empty($_POST['present'])) {
if (empty($_POST['to_login'])) return 'Получатель не указан!'; if (empty($_POST['to_login'])) return 'Получатель не указан!';
@ -96,8 +97,11 @@ if (!empty($_POST['present'])) {
<label><input type=radio name=from value=0 checked> <?= $user['login'] ?></label><br> <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=1> анонимно</label><br>
<label><input type=radio name=from value=2> от имени клана</label><br> <label><input type=radio name=from value=2> от имени клана</label><br>
Долговечность подарка (5кр в день):<br>
<input type="number" name="days" placeholder="Количество дней">
<p>
<button>Подарить</button> <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" <table class="zebra" width=100% cellspacing="1" cellpadding="2"
bgcolor="#A5A5A5"> bgcolor="#A5A5A5">