From 334a3e9f825a6e5a9b8057403e06a852fff20653 Mon Sep 17 00:00:00 2001 From: "OHASHI, Norikazu" Date: Sun, 12 May 2019 07:38:33 +0900 Subject: [PATCH] =?utf8?q?=E3=82=B5=E3=82=A4=E3=83=B3=E3=82=A2=E3=83=83?= =?utf8?q?=E3=83=97=E7=94=A8=E7=94=BB=E9=9D=A2=E3=81=AE=E3=82=B9=E3=82=BF?= =?utf8?q?=E3=82=A4=E3=83=AB=E9=81=A9=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- sinatra/app/views/signup.haml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sinatra/app/views/signup.haml b/sinatra/app/views/signup.haml index 83de15b..09bb91c 100644 --- a/sinatra/app/views/signup.haml +++ b/sinatra/app/views/signup.haml @@ -15,31 +15,31 @@ %label{ :for => 'name' } %span アカウント: - %input{ :name => 'name', :id => 'name', :size => 10, :maxlength => 10, :required => true} + %input{ :name => 'name', :type => 'text', :class => 'input_text', :id => 'name', :size => 10, :maxlength => 10, :required => true} .item %label{ :for => 'full_name' } %span フルネーム: - %input{ :name => 'full_name', :id => 'full_name', :size => 30, :maxlength => 127} + %input{ :name => 'full_name', :type => 'text', :class => 'input_text', :id => 'full_name', :size => 30, :maxlength => 127} .item %label{ :for => 'passwd' } %span パスワード: - %input{ :name => 'passwd', :type => 'password', :id => 'passwd', :pattern => '.{6,}', :required => true } + %input{ :name => 'passwd', :type => 'password', :class => 'input_text', :id => 'passwd', :pattern => '.{6,}', :required => true } .item %label{ :for => 'passwdConfirm'} %span パスワード(確認用): - %input{ :type => 'password', :id => 'passwdConfirm', :pattern => '.{6,}', :required => true, :oninput => 'checkSameForm(this, "passwd", "パスワードが一致しません。")' } + %input{ :type => 'password', :class => 'input_text', :id => 'passwdConfirm', :pattern => '.{6,}', :required => true, :oninput => 'checkSameForm(this, "passwd", "パスワードが一致しません。")' } .item %label{ :for => 'email' } %span Eメールアドレス: - %input{ :name => 'email', :type => 'email', :id => 'email', :size => 30, :maxlength => 127, :required => true} + %input{ :name => 'email', :type => 'email', :class => 'input_text', :id => 'email', :size => 30, :maxlength => 127, :required => true} .buttons %hr -- 2.19.2