21 lines
661 B
PHP
21 lines
661 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Link Page</title>
|
|
</head>
|
|
<body>
|
|
<h1>Links</h1>
|
|
<form method="GET" action="{{ route('handleArticleActionPao') }}">
|
|
<label for="article_id">Inserisci l'ID dell'articolo:</label>
|
|
<input type="text" id="article_id" name="id" />
|
|
<select name="action">
|
|
<option value="search">Cerca Articolo</option>
|
|
<option value="checkPreOrder">Verifica Preordine</option>
|
|
</select>
|
|
<button type="submit">Esegui Azione</button>
|
|
</form>
|
|
</body>
|
|
</html>
|