0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

今日の学習

Posted at

##やったこと
・実際にformタグを使い簡単な問い合わせ画面を作る。
・railsチュートリアル2章の知識を用いて、task管理アプリを作る。
##学んだこと

type属性
input type="text"
属性の値を"text"と表示すると1行のテキストを入力できるフィールドができる。

name属性
input type="text" name="mail"
フィールドを特定する名前を半角英数で指定する。(わかりやすい名前で)

textareaタグ

nameタグは上記と一緒
textarea name="comment"

cols属性
テキストフィールドの横幅を指定。
属性を指定しない場合は約20文字である。
textarea name="comment" cols="30"

rows属性
rows属性を"5"に指定すると5行分程度の高さでフィールドが表示されます。5行しか入力できないという数字ではなく、あくまでも表示される高さの目安として設定する。
textarea name="comment" cols="30" rows="5"

送信ボタンの作成
最初のinputタグを使いtype属性にsubmitを指定する。
input type="submit"

value属性
ボタンに表示する文字を指定する。
input type="submit" value="確認する"

##難しくてハマったところ
・githubにpushする際に下記のようなエラーがでた。

'git@github.com/自分のアカウント/samurai_app' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.```

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?