Socialify

Folder ..

Viewing index.html
16 lines (16 loc) • 749.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
{{> _head title='NeoTalk - Login'}}
{{> nav/header}}

<div id="loginBox">
    <h1>Register with NeoTalk</h1>
    <form id="registerForm">
        <label for="email">Email</label>
        <input type="email" name="email" id="email" placeholder="Email" autocomplete="off" required />
        <label for="password">Password</label>
        <input type="password" name="password" id="password" placeholder="Password" required />
        <label for="confirmPassword">Confirm Password</label>
        <input type="password" name="confirmPassword" id="confirmPassword" placeholder="Confirm Password" required />
        <input type="submit" value="Register" />
    </form>
</div>
<script type="module" src="/src/scripts/register.ts"></script>
{{> _footer}}