Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@

{% csrf_token %}
<input type="text" name="username" autofocus="" autocapitalize="none" autocomplete="username"
maxlength="150" placeholder="Enter Username" class="textinput form-control" required="">
maxlength="150" placeholder="Enter Email" class="textinput form-control" required="">
<input type="password" name="password" autofocus="" autocapitalize="none" autocomplete="password"
maxlength="150" placeholder="Email Password" class="textinput form-control" required="">
maxlength="150" placeholder="Dashboard Password" class="textinput form-control" required="">
{% if error_message %}
<p style="color: red; text-align: left; font-size: 11px;
color: #d52918;
Expand Down
3 changes: 2 additions & 1 deletion backend/src/zango/cli/start_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ def create_project(
project_template_path = os.path.join(
os.path.dirname(zango.cli.__file__), "project_template"
)
command = f"{command} --template '{str(project_template_path)}'"
# command = f"{command} --template '{str(project_template_path)}'"
command = f'{command} --template "{project_template_path}"'

subprocess.run(command, shell=True, check=True)
env_keys = {
Expand Down