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.

44 lines
1.0 KiB
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

@{
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>