mirror of
https://github.com/BreizhHardware/AJAX.git
synced 2026-01-19 00:57:34 +01:00
48 lines
1.8 KiB
HTML
48 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
|
|
<meta charset="utf-8">
|
|
<title> index </title>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="row">
|
|
<h1>Exemples d'API tierce </h1>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-6">
|
|
<button type="button" class="btn btn-primary" id="github">Github</button><br><br>
|
|
</div>
|
|
<div class="col-6">
|
|
<button type="button" class="btn btn-primary" id="cat">Chat</button><br><br>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-6">
|
|
<div id="githuarea">
|
|
<input type="text" class="form-control" aria-label="Username" aria-describedby="basic-addon1"
|
|
placeholder="Entrez le login Github" id="githubname"><br>
|
|
<button type="button" class="btn btn-outline-secondary" id="respgithub">Rechercher</button> <br>
|
|
<div class="col-6">
|
|
<div id="githubinfo"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-6">
|
|
<div id="catarea" class="d-none">
|
|
<input type="text" class="form-control" aria-label="Username" aria-describedby="basic-addon1"
|
|
placeholder="Entrez le texte à insérer dans l'image" id="texteinimage"><br>
|
|
<button type="button" class="btn btn-outline-secondary" id="respcat">Rechercher</button>
|
|
<div class="col-6">
|
|
<br>
|
|
<div id="catimg"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="apitierces.js"></script>
|
|
</body>
|
|
</html> |