forked from aaronpk/oauth.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
83 lines (70 loc) · 2.72 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
$page_section = "home";
$page_title = "OAuth Community Site";
require('./includes/_header.php');
?>
<div class="container">
<div id="header" class="column first last span-20">
<?php require('./includes/_site_name.php'); ?>
<div id="primary" class="column span-13 last">
<?php require('./includes/_nav_primary.php'); ?>
</div>
<div id="site-description" class="column span-18 append-1 prepend-1 first last">
<h3>An <strong>open protocol</strong> to allow <strong>secure authorization </strong> in a <strong>simple</strong> and <strong>standard</strong> method from web, mobile and desktop applications.</h3>
<p id="read-more">
<a href="/2/">Learn more about OAuth 2.0 »</a>
</p>
</div>
</div>
<div class="column first last span-20" style="clear: both; text-align: center; font-size: 16pt; line-height: 18pt; width: 760px; margin: 20px auto; float: none;">
<div style="padding: 20px 0; display: flex; flex-direction: row;">
<div style="width: 60%;">
The OAuth 2.0 authorization framework enables a third-party
application to obtain limited access to an HTTP service.
</div>
<div style="width: 40%;"><?php require('includes/_carbon.php'); ?></div>
</div>
</div>
<div id="main" class="column first last span-20">
<div id="client-side" class="column span-9 append-1 first">
<p class="intro">
For Consumer developers...
</p>
<p>
If you're building...
</p>
<ul>
<li>web applications</li>
<li>desktop applications</li>
<li>mobile applications</li>
<li>Javascript or browser-based apps</li>
</ul>
<p>
OAuth is a simple way to publish and interact with protected data. It's also a safer and more secure way for people to give you access. We've kept it simple to save you time.
</p>
</div>
<div id="server-side" class="column span-9 last">
<p class="intro">
For Service Provider developers...
</p>
<p>
If you're supporting...
</p>
<ul>
<li>web applications</li>
<li>mobile applications</li>
<li>server-side APIs</li>
<li>mashups</li>
</ul>
<p>
If you're storing protected data on your users' behalf, they shouldn't be spreading their passwords around the web to get access to it. Use OAuth to give your users access to their data while protecting their account credentials.
</p>
</div>
<div class="clear"></div>
<div class="get-started column span-20 first last">
<a href="/getting-started/">Get started...</a>
</div>
<div class="clear"></div>
</div>
</div>
<?php require('./includes/_footer.php'); ?>