summary refs log tree commit diff
path: root/jsfiddles/register_login/demo.html
blob: fcac453ac26244400030f5d25b4db4d07ce37770 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div>
    <p>This registration/login demo requires a home server to be running on http://localhost:8008</p>
</div>
<form class="registrationForm">
    <input type="text" id="user" placeholder="Username"></input>
    <input type="password" id="password" placeholder="Password"></input>
    <input type="button" class="register" value="Register"></input>
</form>
<form class="loginForm">
    <input type="text" id="userLogin" placeholder="Username"></input>
    <input type="password" id="passwordLogin" placeholder="Password"></input>
    <input type="button" class="login" value="Login"></input>
</form>
<div class="loggedin">
    <p id="welcomeText"></p>
    <input type="button" class="testToken" value="Test token"></input>
    <input type="button" class="logout" value="Logout"></input>
    <p id="imSyncText"></p>
</div>