次画面「alcohol.php」への画面遷移をsubmitボタンで行いたいのですが、ボタンを押しても何も起こらないです。「alcohol.php」は同階層内に作ってあります。
html
1<!DOCTYPE html> 2<html lang="ja"> 3 <head> 4 <meta charset="utf-8"> 5 <link rel="stylesheet" href="signup.css"> 6 <title></title> 7 </head> 8 <body> 9 <hgroup class="heading"> 10 <h1 class="major">Alcohol busters</h1> 11 </hgroup> 12 13 <form class="sign-up" action="alcohol.php" method="post"> 14 <h1 class="sign-up-title">ログインフォーム</h1> 15 <input type="email" name="mail" class="sign-up-input" placeholder="メールアドレス" value="" autofocus> 16 <input type="password" name="password" class="sign-up-input" placeholder="パスワード" value=""> 17 <input type="submit" name="send" value="ログイン" class="sign-up-button"> 18 </form> 19 <div class="about"> 20 <p class="about-links"> 21 <a href="signin.php" target="_parent">新規登録はこちら</a> 22 </p> 23 </div> 24 </body> 25 </html>
回答1件
あなたの回答
tips
プレビュー