You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
|
|
@{
|
|
|
|
|
Layout = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta name="viewport" content="width=device-width" />
|
|
|
|
|
<title>用户授权页面</title>
|
|
|
|
|
<script src="~/Scripts/jquery-3.3.1.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
$(function () {
|
|
|
|
|
$("#btn_reject").click(function () {
|
|
|
|
|
window.location.href='@Html.Raw(@ViewData["RejectUrl"])';
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("#btn_agree").click(function () {
|
|
|
|
|
window.location.href = '@Html.Raw(@ViewData["AgreeUrl"])';
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div>
|
|
|
|
|
<div>
|
|
|
|
|
<h2>是否同意,xxx应用,访问你的QQ资源?</h2>
|
|
|
|
|
<h3>同意后,可以访问你的帐户信息,及其它图片、文件、交易信息!</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<form>
|
|
|
|
|
<input id="btn_reject" type="button" value="拒绝" />
|
|
|
|
|
<br />
|
|
|
|
|
<br />
|
|
|
|
|
<input id="btn_agree" type="button" value="同意" />
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|