-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from pastore99/merging34and17
web pages fixed links and redirects
- Loading branch information
Showing
3 changed files
with
28 additions
and
40 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,30 @@ | ||
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %> | ||
<!DOCTYPE html> | ||
<html> | ||
<%@ page contentType="text/html;charset=UTF-8" language="java" %> | ||
<html lang="it"> | ||
<head> | ||
<title>JSP - Hello World</title> | ||
<meta charset="utf-8" /> | ||
<link rel="stylesheet" href="CSS/homepageGuest.css" /> | ||
<title>Homepage</title> | ||
</head> | ||
<body> | ||
<h1><%= "Hello World!" %></h1> | ||
<br/> | ||
<a href="JSP/login.jsp">Login</a> | ||
<body class="background"> | ||
|
||
|
||
<div class="container"> | ||
|
||
<div class="centra-testo"> | ||
<div id="loginLogo"> | ||
<img src="images/TalkAidLogo.svg" alt="TalkAId logo"> | ||
</div> | ||
TALKAID è un avanzato progetto di riabilitazione per disabilità del linguaggio. Offre trattamenti a distanza, personalizzati grazie all'Intelligenza Artificiale, facilitando logopedisti e motivando i pazienti con il monitoraggio dei progressi. La flessibilità di esercizi da casa elimina barriere, rendendo il percorso accessibile e confortevole. Il sistema, pensato per adulti responsabili, mira a rivoluzionare l'approccio inclusivo e centrato sulla persona per affrontare le disabilità del linguaggio. | ||
|
||
|
||
<form action="JSP/registration.jsp" method="get"> | ||
<button class="bordo_pulsante" type="submit">Registrati</button> | ||
</form> | ||
<form action="JSP/login.jsp" method="get"> | ||
<button class="bordo_pulsante" type="submit">Login</button> | ||
</form> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
</html> | ||
|