Skip to content

Commit 86af1d0

Browse files
"Added sample: javascript/my_uploads.html"
1 parent 02bd8ba commit 86af1d0

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

javascript/my_uploads.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<title>My Uploads</title>
5+
<link rel="stylesheet" type="text/css" href="my_uploads.css">
6+
</head>
7+
<body>
8+
<div id="login-container" class="pre-auth">
9+
This application requires access to your YouTube account.
10+
Please <a href="#" id="login-link">authorize</a> to continue.
11+
</div>
12+
<div id="video-container"></div>
13+
<div class="button-container">
14+
<button id="prev-button" class="paging-button" onclick="previousPage();">Previous Page</button>
15+
<button id="next-button" class="paging-button" onclick="nextPage();">Next Page</button>
16+
</div>
17+
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
18+
<script type="text/javascript" src="auth.js"></script>
19+
<script type="text/javascript" src="my_uploads.js"></script>
20+
<script src="https://apis.google.com/js/client.js?onload=googleApiClientReady"></script>
21+
</body>
22+
</html>

0 commit comments

Comments
 (0)