2017-07-07 15:09:01 +03:00
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-12">
|
2017-09-18 14:33:48 +03:00
|
|
|
<nb-card class="inline-form-card">
|
2017-09-01 18:54:03 +03:00
|
|
|
<nb-card-header>Inline form</nb-card-header>
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-card-body>
|
2017-07-07 15:09:01 +03:00
|
|
|
<form class="form-inline">
|
2019-07-02 16:18:09 +03:00
|
|
|
<input type="text" nbInput fullWidth placeholder="Jane Doe">
|
|
|
|
|
<input type="text" nbInput fullWidth placeholder="Email">
|
2017-09-01 18:54:03 +03:00
|
|
|
<nb-checkbox>Remember me</nb-checkbox>
|
2019-07-02 16:18:09 +03:00
|
|
|
<button type="submit" nbButton status="primary">Submit</button>
|
2017-07-07 15:09:01 +03:00
|
|
|
</form>
|
2017-08-01 17:42:21 +03:00
|
|
|
</nb-card-body>
|
|
|
|
|
</nb-card>
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2017-09-01 18:54:03 +03:00
|
|
|
|
2017-07-07 15:09:01 +03:00
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-6">
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-card>
|
|
|
|
|
<nb-card-header>Using the Grid</nb-card-header>
|
|
|
|
|
<nb-card-body>
|
2017-07-07 15:09:01 +03:00
|
|
|
<form>
|
|
|
|
|
<div class="form-group row">
|
2019-07-02 16:18:09 +03:00
|
|
|
<label for="inputEmail1" class="label col-sm-3 col-form-label">Email</label>
|
2017-09-18 14:33:48 +03:00
|
|
|
<div class="col-sm-9">
|
2019-07-02 16:18:09 +03:00
|
|
|
<input type="email" nbInput fullWidth id="inputEmail1" placeholder="Email">
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group row">
|
2019-07-02 16:18:09 +03:00
|
|
|
<label for="inputPassword2" class="label col-sm-3 col-form-label">Password</label>
|
2017-09-18 14:33:48 +03:00
|
|
|
<div class="col-sm-9">
|
2019-07-02 16:18:09 +03:00
|
|
|
<input type="password" nbInput fullWidth id="inputPassword2" placeholder="Password">
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2017-09-01 18:54:03 +03:00
|
|
|
<div class="form-group row">
|
2019-07-02 16:18:09 +03:00
|
|
|
<label class="col-sm-3 label">Radios</label>
|
2017-09-18 14:33:48 +03:00
|
|
|
<div class="col-sm-9">
|
2019-07-02 16:18:09 +03:00
|
|
|
<nb-radio-group>
|
|
|
|
|
<nb-radio>Option 1</nb-radio>
|
|
|
|
|
<nb-radio>Option 2</nb-radio>
|
|
|
|
|
<nb-radio disabled>Disabled Option</nb-radio>
|
|
|
|
|
</nb-radio-group>
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group row">
|
2017-09-18 14:33:48 +03:00
|
|
|
<div class="offset-sm-3 col-sm-9">
|
2019-07-02 16:18:09 +03:00
|
|
|
<button type="submit" nbButton status="primary">Sign in</button>
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
2017-08-01 17:42:21 +03:00
|
|
|
</nb-card-body>
|
|
|
|
|
</nb-card>
|
2017-09-01 18:54:03 +03:00
|
|
|
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-card>
|
2017-09-01 18:54:03 +03:00
|
|
|
<nb-card-header>Form without labels</nb-card-header>
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-card-body>
|
2017-07-07 15:09:01 +03:00
|
|
|
<form>
|
|
|
|
|
<div class="form-group">
|
2019-07-02 16:18:09 +03:00
|
|
|
<input type="text" nbInput fullWidth placeholder="Recipients">
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
2019-07-02 16:18:09 +03:00
|
|
|
<input type="text" nbInput fullWidth placeholder="Subject">
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
2019-07-02 16:18:09 +03:00
|
|
|
<textarea nbInput placeholder="Message"></textarea>
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
2019-07-02 16:18:09 +03:00
|
|
|
<button type="submit" nbButton status="success">Send</button>
|
2017-07-07 15:09:01 +03:00
|
|
|
</form>
|
2017-08-01 17:42:21 +03:00
|
|
|
</nb-card-body>
|
|
|
|
|
</nb-card>
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
2017-09-01 18:54:03 +03:00
|
|
|
|
2017-07-07 15:09:01 +03:00
|
|
|
<div class="col-md-6">
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-card>
|
2017-09-01 18:54:03 +03:00
|
|
|
<nb-card-header>Basic form</nb-card-header>
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-card-body>
|
2017-07-07 15:09:01 +03:00
|
|
|
<form>
|
|
|
|
|
<div class="form-group">
|
2019-07-02 16:18:09 +03:00
|
|
|
<label for="exampleInputEmail1" class="label">Email address</label>
|
|
|
|
|
<input type="email" nbInput fullWidth id="exampleInputEmail1" placeholder="Email">
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
2019-07-02 16:18:09 +03:00
|
|
|
<label for="exampleInputPassword1" class="label">Password</label>
|
|
|
|
|
<input type="password" nbInput fullWidth id="exampleInputPassword1" placeholder="Password">
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-checkbox>Check me out</nb-checkbox>
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
2019-07-02 16:18:09 +03:00
|
|
|
<button type="submit" nbButton status="danger">Submit</button>
|
2017-07-07 15:09:01 +03:00
|
|
|
</form>
|
2017-08-01 17:42:21 +03:00
|
|
|
</nb-card-body>
|
|
|
|
|
</nb-card>
|
2017-09-01 18:54:03 +03:00
|
|
|
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-card>
|
2017-09-01 18:54:03 +03:00
|
|
|
<nb-card-header>Block form</nb-card-header>
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-card-body>
|
2017-07-07 15:09:01 +03:00
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-sm-6">
|
|
|
|
|
<div class="form-group">
|
2019-07-02 16:18:09 +03:00
|
|
|
<label for="inputFirstName" class="label">First Name</label>
|
|
|
|
|
<input type="text" nbInput fullWidth id="inputFirstName" placeholder="First Name">
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-sm-6">
|
|
|
|
|
<div class="form-group">
|
2019-07-02 16:18:09 +03:00
|
|
|
<label for="inputLastName" class="label">Last Name</label>
|
|
|
|
|
<input type="text" nbInput fullWidth id="inputLastName" placeholder="Last Name">
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-sm-6">
|
|
|
|
|
<div class="form-group">
|
2019-07-02 16:18:09 +03:00
|
|
|
<label for="inputEmail" class="label">Email</label>
|
|
|
|
|
<input type="email" nbInput fullWidth id="inputEmail" placeholder="Email">
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-sm-6">
|
|
|
|
|
<div class="form-group">
|
2019-07-02 16:18:09 +03:00
|
|
|
<label for="inputWebsite" class="label">Website</label>
|
|
|
|
|
<input type="text" nbInput fullWidth id="inputWebsite" placeholder="Website">
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2019-07-02 16:18:09 +03:00
|
|
|
<button type="submit" nbButton>Submit</button>
|
2017-08-01 17:42:21 +03:00
|
|
|
</nb-card-body>
|
|
|
|
|
</nb-card>
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2017-09-01 18:54:03 +03:00
|
|
|
|
2017-07-07 15:09:01 +03:00
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-6">
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-card>
|
2017-09-01 18:54:03 +03:00
|
|
|
<nb-card-header>Horizontal form</nb-card-header>
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-card-body>
|
2017-07-07 15:09:01 +03:00
|
|
|
<form class="form-horizontal">
|
|
|
|
|
<div class="form-group row">
|
2019-07-02 16:18:09 +03:00
|
|
|
<label for="inputEmail3" class="label col-sm-3 form-control-label">Email</label>
|
2017-09-18 14:33:48 +03:00
|
|
|
<div class="col-sm-9">
|
2019-07-02 16:18:09 +03:00
|
|
|
<input type="email" nbInput fullWidth id="inputEmail3" placeholder="Email">
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group row">
|
2019-07-02 16:18:09 +03:00
|
|
|
<label for="inputPassword3" class="label col-sm-3 form-control-label">Password</label>
|
2017-09-18 14:33:48 +03:00
|
|
|
<div class="col-sm-9">
|
2019-07-02 16:18:09 +03:00
|
|
|
<input type="password" nbInput fullWidth id="inputPassword3" placeholder="Password">
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group row">
|
2017-09-18 14:33:48 +03:00
|
|
|
<div class="offset-sm-3 col-sm-9">
|
2017-07-07 15:09:01 +03:00
|
|
|
<div class="checkbox">
|
2017-08-01 17:42:21 +03:00
|
|
|
<nb-checkbox>Remember me</nb-checkbox>
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group row">
|
2017-09-18 14:33:48 +03:00
|
|
|
<div class="offset-sm-3 col-sm-9">
|
2019-07-02 16:18:09 +03:00
|
|
|
<button type="submit" nbButton status="warning">Sign in</button>
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
2017-08-01 17:42:21 +03:00
|
|
|
</nb-card-body>
|
|
|
|
|
</nb-card>
|
2017-07-07 15:09:01 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|