-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (28 loc) · 952 Bytes
/
index.html
File metadata and controls
33 lines (28 loc) · 952 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
25
26
27
28
29
30
31
32
33
<html>
<head>
<!-- Na seção do Head é onde fica as informações de favicon, informações de ranqueamento e scripts que estarão no site -->
<!--
PyScript - Python no HTML - Frontend com Python
https://www.youtube.com/watch?v=NGdvLpu-Xo0&ab_channel=HashtagPrograma%C3%A7%C3%A3o
https://pyscript.net/
-->
<title>Page Title</title>
<link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" />
<script defer src="https://pyscript.net/latest/pyscript.js"></script>
</head>
<body>
Digite seu nome: <br>
<input type = "text" name="user" value=""> <br>
Digite sua senha: <br>
<input type = "text" name="pass" value=""> <br>
<py-script>
print("Hello World")
print(user)
ent1 = input("Insira o primeiro valor: ")
ent2 = input("Insira o segundo valor: ")
soma = ent1 + ent2
print(int(ent1) + int(ent2))
print(soma)
</py-script>
</body>
</html>