|
|
@ -384,7 +384,7 @@ def main():
|
|
|
|
print("4. Generate the website")
|
|
|
|
print("4. Generate the website")
|
|
|
|
print("5. Delete a project")
|
|
|
|
print("5. Delete a project")
|
|
|
|
print("6. Exit")
|
|
|
|
print("6. Exit")
|
|
|
|
choice = input("Enter your choice (1, 2, 3, 4, or 5): ")
|
|
|
|
choice = input("Enter your choice (1, 2, 3, 4, 5 or 6): ")
|
|
|
|
|
|
|
|
|
|
|
|
if choice == '1':
|
|
|
|
if choice == '1':
|
|
|
|
generate_template()
|
|
|
|
generate_template()
|
|
|
@ -399,7 +399,8 @@ def main():
|
|
|
|
elif choice == '6':
|
|
|
|
elif choice == '6':
|
|
|
|
exit()
|
|
|
|
exit()
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
print("Invalid choice. Please enter 1, 2, 3, or 4.")
|
|
|
|
print("Invalid choice. Please enter 1, 2, 3, 4, 5 or 6.")
|
|
|
|
|
|
|
|
main()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|
|
|
|
main()
|
|
|
|