-
Notifications
You must be signed in to change notification settings - Fork 0
/
documentazione.php
46 lines (44 loc) · 1.67 KB
/
documentazione.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebAll</title>
<link rel="stylesheet" href="style.css">
<script src="http://52.47.171.54:8080/service/init.js"></script>
</head>
<body>
<nav class="navbar">
<div class="container">
<a href="#" class="logo"><img src="weball_logo.png" alt="Logo" /></a>
<div class="nav-links">
<a href="index.php">Home</a>
<a href="documentazione.php" disabled>Documentazione</a>
<a href="siamo.php">Chi siamo</a>
<a href="accedi.php">Accedi</a>
</div>
<button class="join-button"onclick="openPage()">Utilizza anche tu WebAll</button>
</div>
</nav>
<div class="registration-container">
<h1 class="registration-title">Benvenuto nella documentazione</h1>
<p>Se sei interessato al nostro progetto scaricalo dal pulsante qui sotto!<br><br>Oppure visualizza il nostro github</p>
<button class="join-button2" onclick="openLink2()">Download</button>
<button class="join-button2" onclick="openLink3()">Link github</button>
</div>
<div>
<img src="github-mark-white.png" alt="github"">
</div>
<script> //funzione per aprire nuova pagina per la registrazione di un'utente
function openPage() {
window.location.href = 'registrazione.php';
}
function openLink2() {
window.location.href = 'registrazione/utenti.php';
}
function openLink3() {
window.location.href = 'https://github.com/WebAll-Accessibility';
}
</script>
</body>
</html>