90ceb4f6fe
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
66 lines
1.9 KiB
Elixir
66 lines
1.9 KiB
Elixir
<%= form_for @changeset, @action, fn f -> %>
|
|
<%= if @changeset.action do %>
|
|
<div class="alert alert-danger">
|
|
<p>Oops, something went wrong! Please check the errors below.</p>
|
|
</div>
|
|
<% end %>
|
|
|
|
<div class="form-group">
|
|
<%= label f, :username, class: "control-label" %>
|
|
<%= text_input f, :username, class: "form-control" %>
|
|
<%= error_tag f, :username %>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<%= label f, :domain, class: "control-label" %>
|
|
<%= text_input f, :domain, class: "form-control" %>
|
|
<%= error_tag f, :domain %>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<%= label f, :display_name, class: "control-label" %>
|
|
<%= text_input f, :display_name, class: "form-control" %>
|
|
<%= error_tag f, :display_name %>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<%= label f, :description, class: "control-label" %>
|
|
<%= text_input f, :description, class: "form-control" %>
|
|
<%= error_tag f, :description %>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<%= label f, :private_key, class: "control-label" %>
|
|
<%= text_input f, :private_key, class: "form-control" %>
|
|
<%= error_tag f, :private_key %>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<%= label f, :public_key, class: "control-label" %>
|
|
<%= text_input f, :public_key, class: "form-control" %>
|
|
<%= error_tag f, :public_key %>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<%= label f, :suspended, class: "control-label" %>
|
|
<%= checkbox f, :suspended, class: "checkbox" %>
|
|
<%= error_tag f, :suspended %>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<%= label f, :uri, class: "control-label" %>
|
|
<%= text_input f, :uri, class: "form-control" %>
|
|
<%= error_tag f, :uri %>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<%= label f, :url, class: "control-label" %>
|
|
<%= text_input f, :url, class: "form-control" %>
|
|
<%= error_tag f, :url %>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<%= submit "Submit", class: "btn btn-primary" %>
|
|
</div>
|
|
<% end %>
|