aboutsummaryrefslogtreecommitdiff
path: root/web/templates/audio_file/form.html.eex
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2017-01-24 17:09:18 +0100
committerneodarz <neodarz@neodarz.net>2017-01-24 17:09:18 +0100
commit033d07a519bac03fdfd28ca15e09cc287e80fd14 (patch)
treed623a1806c64ad84d7c88b0762ae6eb26ed14ce0 /web/templates/audio_file/form.html.eex
downloadthe_transcriber_backend-033d07a519bac03fdfd28ca15e09cc287e80fd14.tar.xz
the_transcriber_backend-033d07a519bac03fdfd28ca15e09cc287e80fd14.zip
Initial commit with non-functional pieces of code about file upload
Diffstat (limited to 'web/templates/audio_file/form.html.eex')
-rw-r--r--web/templates/audio_file/form.html.eex29
1 files changed, 29 insertions, 0 deletions
diff --git a/web/templates/audio_file/form.html.eex b/web/templates/audio_file/form.html.eex
new file mode 100644
index 0000000..2667f23
--- /dev/null
+++ b/web/templates/audio_file/form.html.eex
@@ -0,0 +1,29 @@
+<%= form_for @changeset, @action, [multipart: true], 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, :audio_path, class: "control-label" %>
+ <%= file_input f, :audio_path, class: "form-control" %>
+ <%= error_tag f, :audio_path %>
+ </div>
+
+ <div class="form-group">
+ <%= label f, :transcription_file_path, class: "control-label" %>
+ <%= text_input f, :transcription_file_path, class: "form-control" %>
+ <%= error_tag f, :transcription_file_path %>
+ </div>
+
+ <div class="form-group">
+ <%= label f, :audio_duration, class: "control-label" %>
+ <%= text_input f, :audio_duration, class: "form-control" %>
+ <%= error_tag f, :audio_duration %>
+ </div>
+
+ <div class="form-group">
+ <%= submit "Submit", class: "btn btn-primary" %>
+ </div>
+<% end %>