Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
12 righe
641 B
12 righe
641 B
<? |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
?> |
|
<form action="/search/index.php" rel="validate" method="post" target="_self" id="search-form"> |
|
<input type="hidden" name="token" value="<?= tokenGen() ?>"> |
|
<h1><span class="fa fa-search"></span> <?= __("Cerca") ?></h1> |
|
<div class="form-group"> |
|
<input type="text" name="testo" class="form-control input-lg text-center" title="<?= __("Testo da cercare") ?>" rel="S;3;50;A"> |
|
</div> |
|
<button type="submit" class="btn btn-primary btn-lg btn-block"><span class="fa fa-search"></span> <?= __("Cerca") ?></button> |
|
</form>
|