mirror of
https://github.com/raseels-repos/golang-saas-starter-kit.git
synced 2025-06-06 23:46:29 +02:00
49 lines
1.7 KiB
Plaintext
49 lines
1.7 KiB
Plaintext
{{define "title"}}Create Project{{end}}
|
|
{{define "style"}}
|
|
|
|
{{end}}
|
|
{{define "content"}}
|
|
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="/projects">Projects</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page">Create</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
<div class="d-sm-flex align-items-center justify-content-between mb-4">
|
|
<h1 class="h3 mb-0 text-gray-800">Create Project</h1>
|
|
</div>
|
|
|
|
<form class="user" method="post" novalidate>
|
|
|
|
<div class="card shadow">
|
|
<div class="card-body">
|
|
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label for="inputName">Project Name</label>
|
|
<input type="text" id="inputName"
|
|
class="form-control {{ ValidationFieldClass $.validationErrors "Name" }}"
|
|
placeholder="Enter name for your project" name="Name"value="{{ .form.Name }}" required>
|
|
{{template "invalid-feedback" dict "fieldName" "Name" "validationDefaults" $.validationDefaults "validationErrors" $.validationErrors }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row mt-4">
|
|
<div class="col">
|
|
<input id="btnSubmit" type="submit" name="action" value="Save" class="btn btn-primary"/>
|
|
<a href="/projects" class="ml-2 btn btn-secondary" >Cancel</a>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
{{end}}
|
|
{{define "js"}}
|
|
|
|
{{end}}
|