diff options
Diffstat (limited to 'src/guff/views/ecrs')
-rw-r--r-- | src/guff/views/ecrs/test/auth.ecr | 62 |
1 files changed, 34 insertions, 28 deletions
diff --git a/src/guff/views/ecrs/test/auth.ecr b/src/guff/views/ecrs/test/auth.ecr index 6999737..10b9518 100644 --- a/src/guff/views/ecrs/test/auth.ecr +++ b/src/guff/views/ecrs/test/auth.ecr @@ -599,33 +599,39 @@ class='tab-pane' role='tabpanel' > - <div class='form-group'> - <label for='post-new-blog-name'> - Title - </label> - - <input - type='text' - id='post-new-blog-name' - class='form-control' - title='Enter title for blog post.' - placeholder='Blog Post Title' - /> - </div><!-- form-group --> - - <div class='form-group'> - <label for='post-new-blog-slug'> - Slug - </label> - - <input - type='text' - id='post-new-blog-slug' - class='form-control' - title='Enter slug for blog post.' - placeholder='blog-post-slug' - /> - </div><!-- form-group --> + <div class='row'> + <div class='col-md-6'> + <div class='form-group'> + <label for='post-new-blog-name'> + Title + </label> + + <input + type='text' + id='post-new-blog-name' + class='form-control' + title='Enter title for blog post.' + placeholder='Blog Post Title' + /> + </div><!-- form-group --> + </div><!-- col-md-6 --> + + <div class='col-md-6'> + <div class='form-group'> + <label for='post-new-blog-slug'> + Slug + </label> + + <input + type='text' + id='post-new-blog-slug' + class='form-control' + title='Enter slug for blog post.' + placeholder='blog-post-slug' + /> + </div><!-- form-group --> + </div><!-- col-md-6 --> + </div><!-- row --> <div class='form-group'> <label for='post-new-blog-body'> @@ -635,7 +641,7 @@ <textarea id='post-new-blog-body' class='form-control' - rows='10' + rows='15' ></textarea> </div><!-- form-group --> </div><!-- #post-new-tab-pane-blog --> |