From be2a93525069de2dfa3c23b0c23e7a9f7ad4c03d Mon Sep 17 00:00:00 2001 From: Marius Peter Date: Sun, 29 Dec 2024 15:14:43 +0100 Subject: First commit. --- app/views/registrations/new.html.erb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 app/views/registrations/new.html.erb (limited to 'app/views/registrations/new.html.erb') diff --git a/app/views/registrations/new.html.erb b/app/views/registrations/new.html.erb new file mode 100644 index 0000000..9d9f9bc --- /dev/null +++ b/app/views/registrations/new.html.erb @@ -0,0 +1,17 @@ +

Sign Up

+ +<%= form_with model: @user, url: registration_path, method: :post, local: true do |f| %> +
+ <%= f.label :email_address %> + <%= f.email_field :email_address, required: true %> +
+
+ <%= f.label :password %> + <%= f.password_field :password, required: true %> +
+
+ <%= f.label :password_confirmation %> + <%= f.password_field :password_confirmation, required: true %> +
+ <%= f.submit "Sign Up" %> +<% end %> -- cgit v1.2.3