Sha256: 0939547788d7e26680bb10d64c3cdd5f951c83371bd84a484297b13f5c75edf6
Contents?: true
Size: 1.48 KB
Versions: 60
Compression:
Stored size: 1.48 KB
Contents
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Welcome to nutella</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> <style type="text/css"> div { margin-top: 4em; text-align: center; font-size: 3em; } .form-control { height: 50px; width: 20%; text-align: center; font-size: .7em; display: inline-block; } .center form { display:inline-block; } </style> </head> <body> <!-- Content --> <div> <p>What is your app id? <input id="app_id_input" type="text" value="" class="form-control" autofocus> </p> <br /> <p>What is your run id? <input id="run_id_input" type="text" value="" class="form-control" > </p> </div> <!-- Scripts --> <script> app_id_el = document.getElementById('app_id_input'); run_id_el = document.getElementById('run_id_input'); run_id_el.addEventListener('change', function() { var url = location.href if (url.substr(url.length - 1)=="/") window.location = url + app_id_el.value + '/' + this.value + '/'; else window.location = url + '/' + app_id_el.value + '/'+ this.value + '/'; }); </script> </body> </html>
Version data entries
60 entries across 60 versions & 1 rubygems