Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

This article is a Private article. Only a writer and users who know the URL can access it.
Please change open range to public in publish setting if you want to share this article with other users.

More than 5 years have passed since last update.

【Rails】fom_tagメソッドのサンプルコード

Last updated at Posted at 2018-08-27

#サンプルコード
自分向けコピペ用サンプルコード。参考までに。

new.html.erb
<head>
	<meta charset="utf-8">
	<link rel="stylesheet" href="members.scss" type="text/css">
</head>
<h1>
	会員登録
</h1>
<body>
	<%= form_tag(users_path, method: :post) do %>
		<p>
			<%= search_field_tag :name %>
			<%= submit_tag "検索"%>
		</p>
		<p>
			<%= label_tag :name, "名前" %><br>
			<%= text_field_tag :name %>
		</p>
		<p>
			<%= label_tag :email, "メールアドレス" %><br>
			<%= email_field_tag :email %>
		</p>
		<p>
			<%= label_tag :satisfaction, "満足度" %><br>
			<p>
				<%= range_field_tag :satisfaction %><br>
			</p>
			不満     満足
		</p>
		<p>
			<%= label_tag :live_experience, "ライブ参加回数" %><br>
			<%= number_field_tag :live_experience %></p>
		<p>
			<%= label_tag :adress, "お住まい" %><br>
			<%= select_tag(:adress , options_for_select(["北海道","東京"])) %>
		</p>
		<p>
			<%= label_tag :birth, "生年月日" %><br>
			<%= date_field_tag :birth %><br>
			<%= datetime_field_tag :birth %><br>
			<%= datetime_local_field_tag :birth %><br>
			<%= month_field_tag :birth %>
			<%= time_field_tag :birth %>
			<%= week_field_tag :birth %>
		</p>
		<p>
			<%= label_tag :phone, "電話番号" %><br>
			<%= telephone_field_tag :phone %>
		</p>
		<p>
			<%= label_tag :image, "アイコン画像" %><br>
			<%= file_field_tag :image %>
		</p>
		<p>
			<%= label_tag :password, "パスワード" %><br>
			<%= password_field_tag :password %>
		</p>

		<p>
			<%= hidden_field_tag :hidden %>
		</p>
		<p>
			<%= label_tag :intro, "自己紹介" %><br>
			<%= text_area_tag :intro %>
		</p>
		<p>
			<%= label_tag :gender, "性別" %><br>
			<%= check_box_tag :gender %>
			<%= label_tag :gender, "" %>
			<%= check_box_tag :gender %>
			<%= label_tag :gender, "" %>
		</p>
		<p>
			<%= label_tag :fan_of, "推し" %><br>
			<label><%= radio_button_tag :fan_of, "百田夏菜子" %> 百田夏菜子</label><br>
			<label><%= radio_button_tag :fan_of, "玉井詩織" %> 玉井詩織</label><br>
			<label><%= radio_button_tag :fan_of, "佐々木彩夏" %> 佐々木彩夏</label><br>
			<label><%= radio_button_tag :fan_of, "高城れに" %> 高城れに</label><br>
			<label><%= radio_button_tag :fan_of, "有安杏果" %> 有安杏果</label><br>
			<label><%= radio_button_tag :fan_of, "" %></label><br>
		</p>

		<p>
			<%= label_tag :url, "関連ページ" %><br>
			<%= url_field_tag :url %>
		</p>

		<p>
			<%= label_tag :color, "好きな色" %><br>
			<%= color_field_tag :color %>
		</p>
		<%= submit_tag "提出"%>
	<% end %>
</body>

#実行結果画像
スクリーンショット 2018-08-27 22.46.35.png

スクリーンショット 2018-08-27 22.47.33.png
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?