20 lines
486 B
Plaintext
20 lines
486 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Parcoursup - test API</title>
|
|
</head>
|
|
<body>
|
|
<h1>Mini projet Parcoursup</h1>
|
|
<p>Recherche de formations Parcoursup</p>
|
|
|
|
<input id="search" type="text" placeholder="Ex : BUT informatique" />
|
|
<button id="btn-test">Rechercher</button>
|
|
|
|
<div id="output">En attente...</div>
|
|
|
|
|
|
<script type="module" src="./main.js"></script>
|
|
</body>
|
|
</html> |