Cooldude100
Coder
I am using pyscript and typed in this code
.
(It is clearly not finished.)
I need help for the widget to show up on the website. and the edge dev tools keep telling me errors that I already fixed.
Code:
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" />
<script defer src="https://pyscript.net/latest/pyscript.js"></script>
<body>
<title>Making transactions so much easier! Fruit Surf</title>
<h1>FruitSurf</h1>
<p>This website is not up yet</p>
<p>What is this website going to be?</p>
<p>Fruit serf is a website that works like venmo or paypal. You sign up for an account with your credit card number and your email. You can enter a give value and a recieve value (If you are doing a loan). The money you give you have to pay interest for. You may ask for the other person to pay the interest with the recieve command. Fruitsurf makes loans and transactions way easier
</html>
<html>
<head>
<meta-charset name="viewport" content="width=device-width, initial-scale=1" >
</meta-charset>
</head>
<body>
<py-script>
import.sqlite3
print("Please enter the last four digits of you number")
Last4digits = input()
print("please enter a valid password")
Password = input()
print("please enter a valid username")
Username = input()
Account information = [
(Last4digits, Password, Username)
</py-script>
</body>
</html>
(It is clearly not finished.)
I need help for the widget to show up on the website. and the edge dev tools keep telling me errors that I already fixed.