CINXE.COM

JAMS Playground | Submission - Login

<!DOCTYPE html> <html lang="en"> <head> <meta charset='utf-8'> <title>JAMS Playground | Submission - Login</title> <link rel="stylesheet" href="/bundles/mdpimain/assets/css/main-a59bef07b1.min.css" /> <link rel="stylesheet" href="/bundles/mdpimain/assets/css/fa/font-awesome.min.css" /> <style type="text/css"> .simditor li{ margin: 0; padding: 0; background: none; color: #000; } .simditor .simditor-toolbar > ul > li > span.separator { border: 0; display: inline-block; } .simditor-toolbar { width: auto; } #a { color:red; } div.element .simditor-body ul li, div.element .editor-style ul li{ list-style: disc outside none; } .quickform form .form_ele{float:none;} .comment_content ul li { background: none; color: inherit; list-style: disc !important; padding: 0; } </style> <link rel="shortcut icon" href="/bundles/mdpimain/assets/favicon.ico" /> <!--[if lte IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!-- Crazyegg Tracking Code for jams --> <script type="text/javascript" src="//script.crazyegg.com/pages/scripts/0116/4951.js" async="async"></script> </head> <body> <a name="top"></a> <header style="min-height:36px;"> <div id="topmenu"> <ul> <li class="user-quick-cmd"> <select id="language" style="padding: 0px; margin-top: -7px;"> <option value="en" selected="true">English</option> <option value="zh" >简体中文</option> </select> </li> <li class="user-quick-cmd"> <a href="/user/manuscripts/upload" style="padding-right:10px;">Submit</a> </li> <li><a href="https://playground.jams.pub" target="_blank">Home</a></li> <li><a href="https://jams.pub" target="_blank">JAMS website</a></li> </ul> </div> </header> <div id="container"> <div id="stripeleft"> <div id="striperight"> <div id="main"> <div id="rightcol"></div> <div id="rightcol"></div> <div id="maincol" class="nosp"> <h1>JAMS Playground Login</h1> <div> <div style="float:left; width:55%; margin:0 5% 0 0;"> <div class="quickform"> <form class="QuickForm2" action="/user/login" method="post"> <div> <fieldset> <legend>Login</legend> <label>Email</label><break></break> <input type="email" id="user_login_email" name="user_login[email]" size="40" /> <div class="height10"></div> <label>Password</label><break></break> <input type="password" id="user_login_password" name="user_login[password]" size="40" /> <div class="height10"></div> <label>&nbsp;</label> <input type="submit" value="Login" class="submit"> </fieldset> <input type="hidden" id="user_login__token" name="user_login[_token]" value="gPlP7dxYq6OQBGTNvn09WkoWSsQCE78X3tJVjsitYX4" /> </div> </form> </div> </div> <div style="float:left; width:38%;"> <h2>Welcome to the JAMS Playground</h2> <p>You can log in as an Editor typing in username ‘editor@jams.pub’ and password ‘jams’.</p> <p>Once in, you can click around and explore the platform at your own pace.</p> </div> </div> </div> <div class="clear"></div> </div> </div> </div> <div id="footer"> <div id="copyright">&copy; Powered by JAMS, an MDPI publishing platform.</div> </div> <div id="preparing-file-modal" title="Preparing report..." style="display: none;"> <p>We are preparing your report, please wait...</p> <div class="ui-progressbar-value ui-corner-left ui-corner-right" style="width: 100%; height:22px; margin-top: 20px;"></div> </div> <div id="error-modal" title="Error" style="display: none;"> There was a problem generating your report, please try again. </div> <script> var SusyConfig = { image_src: { loading: '/bundles/mdpimain/img/ui/loading.gif', cross: '/bundles/mdpimain/img/icon-silk/cross.png' }, image: { loading: '<img border="0" src="/bundles/mdpimain/img/ui/loading.gif" alt="Loading..." title="Loading..." width="16" height="16">' }, url: { feed: '/feed/search' } } </script> <script src="/bundles/mdpimain/assets/js/lib.js"></script> <script src="/bundles/mdpimain/assets/js/main-a862e96a45.js"></script> <div id="scrolltop" style="left: 1433px; visibility: visible; float: right"> <span hidefocus="true"> <div class="scrolltop" id="scrolltop" title="Return Top"><img src="/bundles/mdpimain/img/icon/top.png"></div> </span> </div> <script>$('#form_email').focus()</script> <div class="quickform-error-tooltip ui-corner-all"></div> <div class="quickform-info-tooltip ui-corner-all"></div> <script type="text/javascript"> $(function(){ $("#language").change(function(){ var lt = $(this).val(); var uri = "/change/language"; $.ajax({ url: uri, method: 'get', data:{l:lt}, error: function(err) { alert("Failed!"); window.location.href=location.href; }, success: function(res) { window.location.href=location.href; } }); }) $('.ui-dialog .ui-button-text').each(function(){ var botton_text = $(this).text(); if (botton_text == 'close'){ $(this).text("close"); } else if (botton_text == 'Done') { $(this).text("Done"); } else if (botton_text == 'OK') { $(this).text("OK"); } else if (botton_text == 'Cancel') { $(this).text("Cancel"); } }); }); </script> <script type="text/javascript"> $(function() { toastr.options.closeButton = true; toastr.options.progressBar = true; }); $('.displayVoucher').on('click', function (e) { e.preventDefault(); var display_voucher_id = 'display-voucher-' + $(this).data('reviewer-rel-id'); if ($(this).data('voucher-granted')) { $('#' + display_voucher_id).dialog({ autoOpen: true, title: "Voucher Info", width: 550, height: 220, modal: true, }); } else { $('#' + display_voucher_id).dialog({ autoOpen: true, title: "Grant Voucher", width: 550, height: 320, modal: true, buttons: { Confirm: function () { var enableVoucherSelected = $(this).find('.enable-voucher'); var url = enableVoucherSelected.data('grant-url'); var data = { 'reviewer_id': enableVoucherSelected.data('reviewer-id'), 'discount_key': enableVoucherSelected.val(), } $.post(url, data, function (res) { if (res === '1') { location.reload(); } else { return alert('something wrong'); } }); }, Close: function () { $(this).dialog('close'); } } }); } }); $('.remove_voucher').on('click', function (e) { e.preventDefault(); var remove_url = $(this).data('remove-url'); $('#remove-voucher-dialog').dialog({ autoOpen: true, title: "Delete Voucher", width: 400, height: 160, modal: true, buttons: { Confirm: function () { $.post(remove_url, {}, function (res) { if (res === '1') { location.reload(); } else { return alert('something wrong'); } }); }, Close: function () { $(this).dialog('close'); } } }); }); $('.update-fees-apc').on('click', function(e){ e.preventDefault(); var update_url = $(this).data('update-fees-url'); var fees_amount = $('#invoice-fees-apc').val(); $.post(update_url, {'fees_amount': fees_amount}, function(res) { if (res === '1') { location.reload(); } else { return alert('something wrong'); } }); }) </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10