source: extensions/oAuth/include/test/examples/signin_signup/application/views/users/login.html @ 20293

Last change on this file since 20293 was 20293, checked in by mistic100, 11 years ago

first commit of oAuth plugin, still in developpement

File size: 1.9 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2<html lang="en">
3<head>
4<link rel="stylesheet" href="application/public/css.css" type="text/css" >
5</head>
6<body>
7<center>
8<br />
9<h1>Simple login web page</h1>
10<br />
11<?php if( isset( $error_message ) ) echo $error_message; ?>
12<br />
13<br />
14<table width="00%" border="0" cellpadding="2" cellspacing="2">
15  <tr>
16    <td valign="top"><fieldset>
17        <legend>Sign-in form</legend>
18        <form action="" method="post">
19                <table width="300" border="0" cellpadding="2" cellspacing="2">
20          <tr>
21            <td><div align="right"><strong>Email</strong></div></td>
22            <td><input type="text" name="email" /></td>
23          </tr>
24          <tr>
25            <td><div align="right"><strong>Password</strong></div></td>
26            <td><input type="text" name="password" /></td>
27          </tr>
28          <tr>
29            <td>&nbsp;</td>
30            <td align="right"><input type="submit" value="Sign-in" /> </td>
31          </tr>
32        </table>
33                </form>
34      </fieldset></td>
35    <td valign="top" align="left"> 
36                <fieldset>
37                        <legend>Don't have an account yet?</legend>
38                        &nbsp;&nbsp;<a href="?route=users/register">New Account Signup</a><br />
39                </fieldset> 
40
41                <fieldset>
42                        <legend>Or use anohter service</legend>
43                        &nbsp;&nbsp;<a href="?route=authentications/authenticatewith/google">Sign-in with Google</a><br /> 
44                        &nbsp;&nbsp;<a href="?route=authentications/authenticatewith/yahoo">Sign-in with Yahoo</a><br /> 
45                        &nbsp;&nbsp;<a href="?route=authentications/authenticatewith/facebook">Sign-in with Facebook</a><br />
46                        &nbsp;&nbsp;<a href="?route=authentications/authenticatewith/twitter">Sign-in with Twitter</a><br /> 
47                        &nbsp;&nbsp;<a href="?route=authentications/authenticatewith/linkedin">Sign-in with LinkedIn</a><br />
48                </fieldset>
49          </td>
50  </tr>
51</table> 
52</center>
53 
54</body>
55</html>
Note: See TracBrowser for help on using the repository browser.