-
Notifications
You must be signed in to change notification settings - Fork 439
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
82 changed files
with
5,803 additions
and
3,040 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,21 +22,21 @@ | |
<div class="mbsc-col-sm-6"> | ||
<label> | ||
First Name | ||
<input type="text" id="first" placeholder="What's your first name?" /> | ||
<input type="text" id="first" data-label-style="floating" placeholder="What's your first name?" /> | ||
</label> | ||
<label> | ||
Last Name | ||
<input type="text" id="last" placeholder="What's your last name?" /> | ||
<input type="text" id="last" data-label-style="floating" placeholder="What's your last name?" /> | ||
</label> | ||
</div> | ||
<div class="mbsc-col-sm-6"> | ||
<label> | ||
<input type="email" id="email" placeholder="[email protected]" /> | ||
<input type="email" id="email" data-label-style="floating" placeholder="[email protected]" /> | ||
</label> | ||
<label> | ||
Password | ||
<input type="password" id="password" placeholder="Minimum 6 characters" data-password-toggle="true" /> | ||
<input type="password" id="password" data-label-style="floating" placeholder="Minimum 6 characters" data-password-toggle="true" /> | ||
</label> | ||
</div> | ||
</div> | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import React, { Component } from 'react'; | ||
import { Page, Form, Rating, Stepper, Switch } from '@mobiscroll/react-lite'; | ||
import { Page, Form, Rating, Stepper, Switch, Input } from '@mobiscroll/react-lite'; | ||
import '@mobiscroll/react-lite/dist/css/mobiscroll.min.css'; | ||
import logo from './logo.svg'; | ||
import './App.css'; | ||
|
@@ -17,22 +17,10 @@ class App extends Component { | |
<Form> | ||
<div className="mbsc-form-group"> | ||
<div className="mbsc-form-group-title">Account information</div> | ||
<label> | ||
First Name | ||
<input type="text" placeholder="What's your first name?" /> | ||
</label> | ||
<label> | ||
Last Name | ||
<input type="text" placeholder="What's your last name?" /> | ||
</label> | ||
<label> | ||
<input type="email" placeholder="[email protected]" /> | ||
</label> | ||
<label> | ||
Password | ||
<input type="password" placeholder="Minimum 6 characters" data-password-toggle="true" /> | ||
</label> | ||
<Input type="text" placeholder="What's your first name?" labelStyle="floating">First Name</Input> | ||
<Input type="text" placeholder="What's your last name?" labelStyle="floating">Last Name</Input> | ||
<Input type="email" placeholder="[email protected]" labelStyle="floating">Email</Input> | ||
<Input type="password" placeholder="Minimum 6 characters" labelStyle="floating" passwordToggle={true}>Password</Input> | ||
<Rating value={4}> | ||
Rating | ||
</Rating> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.