You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
39 lines
1.2 KiB
<?php
|
|
include '../session_restraintes.php';
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<?php include 'include/menu.html'; ?>
|
|
</head>
|
|
|
|
<body>
|
|
<?php include 'include/nav.php'?>
|
|
<form id='form' action="cible/export.php" method="post">
|
|
<div class="container-champ">
|
|
<p>Type:</p>
|
|
<div class="input">
|
|
<select class="entry" name="type">
|
|
<option value="csv">CSV</option>
|
|
<!-- <option value="sql">SQL</option> -->
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="container-champ">
|
|
<p>Base:</p>
|
|
<div class="input">
|
|
<select class="entry" name="bdd">
|
|
<option value="pannes">pannes</option>
|
|
<option value="logins">logins</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="container-champ">
|
|
<div class="input" id="submit">
|
|
<input class="entry" type="submit" value="Download">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|