-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoption.html
81 lines (67 loc) · 3.32 KB
/
option.html
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
<!doctype html>
<html lang="en" ng-app="myApp" xmlns="http://www.w3.org/1999/html" style="height: 100%;">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>授权配置</title>
<link rel="stylesheet" href="css/bootstrap/bootstrap.css"/>
<link rel="stylesheet" href="css/font-awesome/font-awesome.min.css"/>
<link rel="stylesheet" href="css/myweibo.css"/>
</head>
<body style="text-shadow: 0 1px 0 #FFFFFF;background: #f5f5f5;height: 100%;">
<div ng-controller="optionCtrl" style="min-height: 100%;">
<nav class="navbar navbar-inverse" role="navigation" style="text-shadow: none;border-radius: 0px;">
<div class="container">
<div class="navbar-header">
<div class="" style="margin-top: 13px">
<img src="icon_48.png" style="width: 24px;height: 24px">
<b class="media-heading" style="font-size: 16px;vertical-align: bottom;color: #777">Weikr 设置</b>
</div>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="mailto:[email protected]?Subject=问题反馈">问题反馈</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<a class="btn btn-primary" href="#" role="button" ng-show="user.length<=0" ng-click="authorize()" style="text-shadow: none;"><i class="fa fa-plus" style="margin-right: 5px;"></i>添加授权</a>
<ul class="list-unstyled">
<li ng-repeat="_user in user">
<img ng-src="{{_user.avatar_large}}" style="width: 50px; height: 50px;" alt="" class="img-thumbnail">
<label>{{_user.name}}</label>
<button type="button" class="btn btn-default" ng-show="user.length>0" ng-click="authorize()">重新授权</button>
<button type="button" class="btn btn-default" ng-click="revokeoauth2()">取消授权</button>
</li>
</ul>
</div>
</div>
<div role="footer" style="position: relative;text-align: center;background-color: #DDDDDD;text-shadow:none;
margin-top: -100px; /* negative value of footer height */
height: 100px;
clear:both;">
<div style="padding-top: 50px">
<a href="http://www.weibo.com/weikrapp">WeiKr</a> ©2014
Powered by
<a href="https://www.angularjs.org">Angularjs </a>
<a href="http://jquery.com/">jQuery </a>
<a href="http://getbootstrap.com/">Bootstrap </a>
<a href="http://fontawesome.io">Font Awesome </a>
<a href="http://mindmup.github.io/bootstrap-wysiwyg/">bootstrap-wysiwyg</a>
<a href="http://html2canvas.hertzen.com">html2canvas</a>
<a href="http://www.nihilogic.dk/labs/canvas2image/">Canvas2Image</a>
</div>
</div>
<script src="lib/angular/angular.min.js"></script>
<script src="lib/jquery/jquery-2.1.1.min.js"></script>
<script src="lib/bootstrap/bootstrap.js"></script>
<script src="js/app.js"></script>
<script src="js/services.js"></script>
<script src="js/bindonce.min.js"></script>
<script src="js/controllers.js"></script>
<script src="js/filters.js"></script>
<script src="js/directives.js"></script>
<script src="js/complies.js"></script>
</body>
</html>