Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# demo
# Demo
Quick Demo Implementation for LoginRadius' Customer Registration Service and Social Login APIs and Front Interfaces.

### Usage
Expand All @@ -7,3 +7,11 @@ Quick Demo Implementation for LoginRadius' Customer Registration Service and Soc
2. Fill in your LoginRadius API Key and Site Name respectively.
3. Everything should just start working

### Features

1. Registration
2. Login
3. Social
4. Email verification
5. Forgot password
6. Reset password
4 changes: 2 additions & 2 deletions email-verification.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<script src="https://auth.lrcontent.com/v2/js/LoginRadiusV2.js"></script>
</head>
<body>
<h3><a href="index.html">Home Page</a></h3>
<h5>Email Verification page, it should alert you if succeed</h5>
<h3><a href="index.html" style="font-weight: bold;">Home Page</a></h3>
<h4>Email Verification page, it should alert you if succeed</h4>
</body>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="option.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion forgot-password.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<script src="https://auth.lrcontent.com/v2/js/LoginRadiusV2.js"></script>
</head>
<body>
<h3><a href="index.html">Home Page</a></h3>
<h3><a href="index.html" style="font-weight: bold;">Home Page</a></h3>
<div id="forgotpassword-container"></div>
</body>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
Expand Down
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
<script src="https://auth.lrcontent.com/v2/js/LoginRadiusV2.js"></script>
</head>
<body>
<a href="registration.html" class="btn btn-lg">registration</a>
<a href="login.html" class="btn btn-lg">login</a>
<a href="social.html" class="btn btn-lg">social</a>
<a href="email-verification.html" class="btn btn-lg">email</a>
<a href="forgot-password.html" class="btn btn-lg">forgot</a>
<a href="reset-password.html" class="btn btn-lg">reset</a>
<a href="registration.html" class="btn btn-lg " style="font-weight: bold;">Registration</a>
<a href="login.html" class="btn btn-lg" style="font-weight: bold;">Login</a>
<a href="social.html" class="btn btn-lg" style="font-weight: bold;">Social</a>
<a href="email-verification.html" class="btn btn-lg" style="font-weight: bold;">Verification</a>
<a href="forgot-password.html" class="btn btn-lg" style="font-weight: bold;">Forgot Password</a>
<a href="reset-password.html" class="btn btn-lg" style="font-weight: bold;">Reset Password</a>

</body>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions login.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<script src="https://auth.lrcontent.com/v2/js/LoginRadiusV2.js"></script>
</head>
<body>
<div class="container">
<h3><a href="index.html">Home Page</a></h3>
<!--div class="container" -->
<h3><a href="index.html" style="font-weight: bold;">Home Page</a></h3>
<div id="login-container"></div>
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion registration.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<script src="https://auth.lrcontent.com/v2/js/LoginRadiusV2.js"></script>
</head>
<body>
<h3><a href="index.html">Home Page</a></h3>
<h3><a href="index.html" style="font-weight: bold;">Home Page</a></h3>

<div id="registration-container"></div>
</body>
Expand Down
3 changes: 1 addition & 2 deletions reset-password.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
<script src="https://auth.lrcontent.com/v2/js/LoginRadiusV2.js"></script>
</head>
<body>
<div class="container">
<h3><a href="index.html">Home Page</a></h3>
<h3><a href="index.html" style="font-weight: bold;">Home Page</a></h3>
<div id="resetpassword-container"></div>
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion social.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<script src="https://auth.lrcontent.com/v2/js/LoginRadiusV2.js"></script>
</head>
<body>
<h3><a href="index.html">Home Page</a></h3>
<h3><a href="index.html" style="font-weight: bold;">Home Page</a></h3>

<div id="interfacecontainerdiv" class="interfacecontainerdiv"></div>
<div id="sociallogin-container"></div>
Expand Down