1
Fork 0
galene/static/index.html

42 lines
1.2 KiB
HTML
Raw Normal View History

2020-04-24 19:38:21 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
2020-12-06 19:43:17 +01:00
<title>Galène</title>
<meta charset="utf-8">
2020-08-27 21:17:46 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2020-04-24 19:38:21 +02:00
<link rel="stylesheet" href="/common.css">
<link rel="stylesheet" href="/mainpage.css">
2020-12-06 19:43:17 +01:00
<link rel="stylesheet" type="text/css" href="/galene.css"/>
2020-08-27 21:17:46 +02:00
<link rel="author" href="https://www.irif.fr/~jch/"/>
</head>
2020-04-24 19:38:21 +02:00
<body>
2020-08-27 21:17:46 +02:00
<div class="home">
2020-12-06 19:43:17 +01:00
<h1 id="title" class="navbar-brand">Galène</h1>
2020-04-24 19:38:21 +02:00
2020-08-27 21:17:46 +02:00
<form id="groupform">
<label for="group">Group:</label>
2022-12-30 10:21:01 +01:00
<input id="group" type="text" name="group" class="form-control form-control-inline" autofocus/>
<input id='submitbutton' type="submit" value="Join" class="btn btn-default btn-large"/><br/>
2020-08-27 21:17:46 +02:00
</form>
<p id="errormessage"></p>
2020-08-27 21:17:46 +02:00
<div id="public-groups" class="groups">
2020-09-05 13:50:10 +02:00
<h2>Public groups</h2>
2020-08-27 21:17:46 +02:00
<table id="public-groups-table"></table>
</div>
2020-04-24 19:38:21 +02:00
</div>
2020-08-27 21:17:46 +02:00
<footer class="signature">
2021-03-30 07:27:35 +02:00
<p><a href="https://galene.org/">Galène</a> by <a href="https://www.irif.fr/~jch/" rel="author">Juliusz Chroboczek</a></p>
2020-08-27 21:17:46 +02:00
</footer>
2020-04-24 19:38:21 +02:00
<script src="/mainpage.js" defer></script>
</body>
</html>