Skip to content

Commit

Permalink
Domain Manipulation
Browse files Browse the repository at this point in the history
  • Loading branch information
Om-Mishra7 committed Sep 30, 2023
1 parent 760b787 commit 59726ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def organization_signup():

organization_name = str(request.form.get("organization_name").title())
organization_domain = str(request.form.get(
"organization_domain").lower()).replace(" ", "")
"organization_domain").lower()).replace(" ", "").replace("https://", "").replace("http://", "").replace("/", "").replace("www.", "")
organization_contact_email = str(request.form.get(
"organization_contact_email").lower()).replace(" ", "")
organization_password = str(request.form.get(
Expand Down

0 comments on commit 59726ac

Please sign in to comment.