ebe38f370811c7ac0064003802f373a5993dc186
[vnfsdk/refrepo.git] /
1 <!doctype html>
2 <html lang="en">
3   <head>
4     <meta charset="utf-8">
5     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
6     <meta name="description" content="">
7     <meta name="author" content="">
8     <link rel="icon" href="../../../../favicon.ico">
9
10     <title>Floating labels example for Bootstrap</title>
11
12     <!-- Bootstrap core CSS -->
13     <link href="../../../../dist/css/bootstrap.min.css" rel="stylesheet">
14
15     <!-- Custom styles for this template -->
16     <link href="floating-labels.css" rel="stylesheet">
17   </head>
18
19   <body>
20     <form class="form-signin">
21       <div class="text-center mb-4">
22         <img class="mb-4" src="https://getbootstrap.com/assets/brand/bootstrap-solid.svg" alt="" width="72" height="72">
23         <h1 class="h3 mb-3 font-weight-normal">Floating labels</h1>
24         <p>Build form controls with floating labels via the <code>:placeholder-shown</code> pseudo-element. <a href="https://caniuse.com/#feat=css-placeholder-shown">Works in latest Chrome, Safari, and Firefox.</a></p>
25       </div>
26
27       <div class="form-label-group">
28         <input type="email" id="inputEmail" class="form-control" placeholder="Email address" required autofocus>
29         <label for="inputEmail">Email address</label>
30       </div>
31
32       <div class="form-label-group">
33         <input type="password" id="inputPassword" class="form-control" placeholder="Password" required>
34         <label for="inputPassword">Password</label>
35       </div>
36
37       <div class="checkbox mb-3">
38         <label>
39           <input type="checkbox" value="remember-me"> Remember me
40         </label>
41       </div>
42       <button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
43       <p class="mt-5 mb-3 text-muted text-center">&copy; 2017-2018</p>
44     </form>
45   </body>
46 </html>