Onja
1 year ago
3 changed files with 60 additions and 0 deletions
@ -0,0 +1,14 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
<meta charset="utf-8"> |
|||
<title>Example App</title> |
|||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> |
|||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script> |
|||
</head> |
|||
<body> |
|||
<main class="main"> |
|||
{{{body}}} |
|||
</main> |
|||
</body> |
|||
</html> |
@ -0,0 +1,37 @@ |
|||
<div id="index"> |
|||
<div class="container"> |
|||
|
|||
<h1>Hello world</h1> |
|||
|
|||
<div class="container-fluid"> |
|||
<div class="row"> |
|||
<div class="col-12"> |
|||
<form method="post" action=""> |
|||
<div class="form-group"> |
|||
<label for="name">URL</label> |
|||
<textarea class="form-control" id="url" name="url" rows="3"></textarea> |
|||
</div> |
|||
<div class="row my-5"> |
|||
<div class="col-12 col-md-5"> |
|||
<div class="form-group"> |
|||
<label for="name">Colonnes disponibles</label> |
|||
</div> |
|||
</div> |
|||
<div class="col-12 col-md-2"> |
|||
<button type="button" class="btn btn-primary">Ajouter</button> |
|||
</div> |
|||
<div class="col-12 col-md-5"> |
|||
<div class="form-group"> |
|||
<label for="name">Colonnes disponibles</label> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<hr /> |
|||
<button class="btn btn-primary" type="submit">Télécharger</button> |
|||
</form> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- /.container-fluid --> |
|||
</div> |
|||
</div> |
Loading…
Reference in new issue