forked from lennonrar/WaterLevel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWiFi.htm
More file actions
24 lines (20 loc) · 669 Bytes
/
WiFi.htm
File metadata and controls
24 lines (20 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>Conexao com WiFi</title>
</head>
<body>
<h1>Escolha uma rede WiFi para se conectar</h1>
<form>
Redes Disponiveis:<br>
<input type = "radio" name = "gender" value = "Rede1" checked> Rede1<br>
<input type = "radio" name = "gender" value = "Rede2"> Rede2<br>
<input type = "radio" name = "gender" value = "Rede3"> Rede3<br>
<input type = "radio" name = "gender" value = "Rede4"> Rede4<br>
Senha:<br>
<input type = "password" name = "senha">
<input type = "submit" onclick = "alert('Conectado com sucesso')" value="Conectar">
<input type = "reset" value="Limpar">
</form>
</body>
</html>