Sha256: df9aeaf159d288454032a45f08007861da948cc84582cdab06d5acdf9f40cf09
Contents?: true
Size: 1.09 KB
Versions: 2
Compression:
Stored size: 1.09 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() { window.location = '/' + this.value }); </script> </body> </html>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nutella_framework-0.2.1 | actors/main_interface/public/index.html |
nutella_framework-0.2.0 | actors/main_interface/public/index.html |