mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-23 08:13:33 +00:00
14 lines
851 B
Cheetah
14 lines
851 B
Cheetah
{{define "settings"}}
|
|
<section class="relative overflow-x-auto shadow-md sm:rounded-lg p-5 text-gray-500 bg-white">
|
|
<h1 class="text-lg font-semibold text-gray-900">
|
|
Creating new worker.
|
|
</h1>
|
|
<form class="max-w-sm mt-4" action="/settings/workers/create" method="post">
|
|
<div class="mb-5">
|
|
<label for="name" class="block mb-2 text-sm font-medium text-gray-900">Name</label>
|
|
<input type="name" name="name" id="name" placeholder="FooBar" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5"/>
|
|
</div>
|
|
<button type="submit" class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm w-full sm:w-auto px-5 py-2.5 text-center">Create</button>
|
|
</form>
|
|
</section>
|
|
{{end}}
|