diff options
| author | Topsitemakers <[email protected]> | 2013-09-09 12:36:56 +0200 |
|---|---|---|
| committer | Topsitemakers <[email protected]> | 2013-09-09 12:36:56 +0200 |
| commit | 3d97454c09acf9636ff315f4ea601aa1fb340f1c (patch) | |
| tree | 44397fd6dafd740ec7fbeff8f8dd19a23593270d | |
| parent | fff5e540f5fb29ea3c2de713c0d6b10642c90e75 (diff) | |
| download | bootstrap-3d97454c09acf9636ff315f4ea601aa1fb340f1c.tar.xz bootstrap-3d97454c09acf9636ff315f4ea601aa1fb340f1c.zip | |
adding required attribute for example signin form
| -rw-r--r-- | examples/signin/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/signin/index.html b/examples/signin/index.html index 5c0a4543a..2b02bdb0c 100644 --- a/examples/signin/index.html +++ b/examples/signin/index.html @@ -28,8 +28,8 @@ <form class="form-signin"> <h2 class="form-signin-heading">Please sign in</h2> - <input type="text" class="form-control" placeholder="Email address" autofocus> - <input type="password" class="form-control" placeholder="Password"> + <input type="text" class="form-control" placeholder="Email address" required autofocus> + <input type="password" class="form-control" placeholder="Password" required> <label class="checkbox"> <input type="checkbox" value="remember-me"> Remember me </label> |
