Sha256: 2353e77a7e3da5794f4e021bcc2c5993a4374645362d5a7895f0b35b582a7829
Contents?: true
Size: 1.23 KB
Versions: 2
Compression:
Stored size: 1.23 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: 40%; text-align: center; font-size: .7em; display: inline-block; } .center { text-align:center; } .center form { display:inline-block; } </style> </head> <body> <!-- Content --> <div> <p>What is your run id?</p> <input id="run_id_input" type="text" value="" class="form-control" autofocus> </div> <!-- Scripts --> <script> el = document.getElementById('run_id_input'); el.addEventListener('change', function() { url = location.href if (url.substr(url.length - 1)=="/") window.location = url + this.value + '/'; else window.location = url + '/' + this.value + '/'; }); </script> </body> </html>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nutella_framework-0.3.1 | actors/main_interface/public/index.html |
nutella_framework-0.3.0 | actors/main_interface/public/index.html |