CINXE.COM
UMS - Unified Marketing Server
<!doctype html> <html> <head> <meta charset="utf-8"> <title>UMS - Unified Marketing Server</title> <!-- Bootstrap Core CSS --> <link href="../resources/css/bootstrap.css" rel="stylesheet"> <!-- Custom Fonts --> <link href="../resources/font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <script src="../resources/js/jquery-1.11.2.min.js" type="text/javascript"></script> <script type="text/javascript"> window.onload = function() { $('a.btn-success').click(function(e) { e.preventDefault(); var $form = $('<form></form>'); $form.append($('<input type="hidden" id="m_id" name="m_id" value="${EMS_M_EMAIL}" />')); $form.append($('<input type="hidden" id="p_id" name="p_id" value="${POST_ID}" />')); $form.append($('<input type="hidden" id="chn" name="chn" value="em" />')); $form.attr('target','_self'); $form.attr('method','post'); $form.attr('action','/ums/deny/unsubscription_result.jsp'); $form.appendTo('body').submit().remove(); }); $('a.btn-warning').click(function(e) { e.preventDefault(); window.open("about:blank","_self","").close(); }); } </script> <style> img.bg { /* Set rules to fill background */ min-height: 100%; min-width: 1024px; /* Set up proportionate scaling */ width: 100%; height: auto; /* Set up positioning */ position: fixed; top: 0; left: 0; } @media screen and (max-width: 1024px){ img.bg { left: 50%; margin-left: -512px; } } #page-wrap {position: relative; width:360px; margin: 100px auto; padding: 20px; background: white; -moz-box-shadow: 0 0 5px black; -webkit-box-shadow: 0 0 10px black; box-shadow: 0 0 5px #865556; border-radius:10px;} p{font: 15px/2 Georgia, Serif; margin: 0 0 30px 0; text-indent: 40px; } .copyright{position:absolute; bottom:-20px; width:350px; text-align:center; font-size:10px;} </style> </head> <body> <div id="page-wrap"> <div class="row" style="padding:0 15px"> <h3 style="margin-top:0; padding-bottom:10px; border-bottom:1px solid #dfdfdf; color:#008333;"> 退订 </h3> <div class="col-xs-12" style="padding:10px 0 20px 0; border-bottom:1px solid #dfdfdf;">确定退订吗?</div> <div class="col-xs-12 text-center" style="padding-top:15px;"> <a href="#" class="btn btn-success"> 是 </a> <a href="#" class="btn btn-warning" >不是</a> </div> </div> </div> </body> </html>