mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
16 lines
345 B
Elixir
16 lines
345 B
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 %>
|
|
|
|
<%= label f, :name %>
|
|
<%= text_input f, :name %>
|
|
<%= error_tag f, :name %>
|
|
|
|
<div>
|
|
<%= submit "Save" %>
|
|
</div>
|
|
<% end %>
|