|
|
@@ -0,0 +1,19 @@
|
|
|
+<script>
|
|
|
+ const submit = async ()=>{
|
|
|
+ console.log("submit");
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<main>
|
|
|
+ <form class="standardForm" onsubmit={submit}>
|
|
|
+ <label>Email:
|
|
|
+ <input bind:value={email} type="email" required>
|
|
|
+ </label>
|
|
|
+
|
|
|
+ <label>Password:
|
|
|
+ <input bind:value={password} type="password" required>
|
|
|
+ </label>
|
|
|
+
|
|
|
+ <button>Log In</button>
|
|
|
+ </form>
|
|
|
+</main>
|