Skip to content

Commit

Permalink
OAuth2 credentials ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
tijptjik committed Oct 13, 2012
1 parent a45c1b1 commit a4edc0c
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,6 @@ pip-log.txt

#Admin
AWS.md

#OAuth2
config/credentials
50 changes: 50 additions & 0 deletions views/words.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>
</title>
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<link rel="stylesheet" href="/css/style.css" />
<style>
/* App custom styles */
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js">
</script>
<script src="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.1.1/jquery.mobile-1.1.1.min.js">
</script>
<script src="/js/main.js">
</script>
</head>
<body>
<!-- Home -->
<div data-role="page" id="page1">
<div data-role="content">
<div style="width: 40px; height: 35px; position: relative;">
<img src="/img/monkey_sm.png" alt="image" />
</div>
<h2>
Your list of words
</h2>
<div data-role="collapsible-set">
<div data-role="collapsible" class="collapsible">
<h3>
Word 1
</h3>
<p>Definition</p>
</div>
<div data-role="collapsible">
<h3>
Word 2
</h3>
<p>Definition</p>
</div>
</div>
</div>
</div>
<script>
//App custom javascript
</script>
</body>
</html>

0 comments on commit a4edc0c

Please sign in to comment.