Skip to content
Open navbar menu
Sign UpLog In
Profile icon

Rishi Patel

@Egyptian-Fantasy
I love coding. I am good at it too!
Gujurat, India
Egyptian-Fantasy
Egyptian-Fantasy
published a Repl
8 months ago
0
Calculaty 5.0
Calculaty 5.0Say hi to Monty!
Egyptian-Fantasy
Egyptian-Fantasy
please tip me, thanks 8 months ago
Egyptian-Fantasy
Egyptian-Fantasy
just talk normally e.g, add 4 and 98 months ago
Egyptian-Fantasy
Egyptian-Fantasy
published an Update
2 years ago
0
Zombie Apocalypse
Zombie Apocalypse
Very Fun
Try it out, it's not scary at all so don't worry. Do have a go.
Egyptian-Fantasy
Egyptian-Fantasy
shared a Post
2 years ago
This is my latest game called zombie apocalypse where you are in a world and zombies are killing everyone! Can you save the rest of the population? Pl
Zombie Apocalypse
Python
MrVoo
MrVoo
Don't ask for updoots2 years ago
sn236
sn236
How can I play if I died image2 years ago
Egyptian-Fantasy
Egyptian-Fantasy
shared a Post
2 years ago
This is to help yourself find your next phone! By patelr
thephoneworks
HTML, CSS, JS
Egyptian-Fantasy
Egyptian-Fantasy
shared a Post
2 years ago
How do I create a WORKING log in form, which remembers you and you are able to create an account? I have also struggled with this a lot in the past.
BangLuon
BangLuon
from flask import Flask,request from replit import db app = Flask(name) @app.route('/login',methods=["GET","POST"]) def login(): if request.method == "POST": db[request.form["username"]] = request.form["password"] return1 year ago
CosmicBear
CosmicBear
You need a backend server (try flask or node.js) with a database. For example: #python from flask import Flask,request from replit import db app = Flask(name) @app.route('/login',methods=["GET","POST"]) def login(): if request.method == "POST": db[request.form["username"]] = request.form["password"] return `2 years ago
ch1ck3n
ch1ck3n
you can't just do it with HTML i am not going to give you code because you will learn to do it yourself eh the hell with it first the HTML POST is a more secure way than GET next I assume you are using express with nodejs you will make a post route app.post() and in that function you will get the form values and set it to the database2 years ago
Egyptian-Fantasy
Egyptian-Fantasy
shared a Post
2 years ago
Did you ever think you could play would you rather with a computer? Well now you can! You will be asked a series of questions and you are to type your
Would you rather
Python
lsikora
lsikora
Cool! I would add a few thing here. The first being so it gives you a actual score. Not just 10-22. Another thing is changing the formating of the inputs. Here is a example import time #puts time in there print("Would you rather fall in lava or drown in water?") #asks the question time.sleep(1) #waits 1 second so you can think fa = input() #lets the quiz taker input there response print(fa) #prints out the response This is just a example and you can go in debt with if, else statements after, bu2 years ago