Skip to content

Instantly share code, notes, and snippets.

@Kazuki-tam
Created May 5, 2020 06:00
Show Gist options
  • Save Kazuki-tam/c9f5196b80e4ac0a787164315c05d435 to your computer and use it in GitHub Desktop.
Save Kazuki-tam/c9f5196b80e4ac0a787164315c05d435 to your computer and use it in GitHub Desktop.
firebase-form sample code
<body>
<main>
<div>
<h1>問い合わせフォーム</h1>
<div>
<form id="contactForm" action="">
<div>
<label for="name">お名前を入力してください</label>
<input id="name" type="text">
</div>
<div>
<label for="email">メールアドレスを入力してください</label>
<input id="email" type="text">
</div>
<button type="submit">送信する</button>
</form>
</div>
</div>
</main>
<script src="/assets/js/index.js"></script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment