diff options
author | Valentin Popov <dev@valentineus.link> | 2016-09-21 05:40:03 +0300 |
---|---|---|
committer | Valentin Popov <dev@valentineus.link> | 2016-09-21 05:40:03 +0300 |
commit | b9628f189b0ca2f7c411bd79566da37c73cc8e8f (patch) | |
tree | 01122bdea534d9cad15a63a271f87f742092b31f /demo/components/communication.php | |
parent | 288980ceb35d5ace51284cfdf176e9acb5f7bb39 (diff) | |
download | iii-module-b9628f189b0ca2f7c411bd79566da37c73cc8e8f.tar.xz iii-module-b9628f189b0ca2f7c411bd79566da37c73cc8e8f.zip |
Demo in beta mode.
Diffstat (limited to 'demo/components/communication.php')
-rw-r--r-- | demo/components/communication.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/demo/components/communication.php b/demo/components/communication.php new file mode 100644 index 0000000..e73be75 --- /dev/null +++ b/demo/components/communication.php @@ -0,0 +1,16 @@ +<!-- Home side panel -->
+<form class="form-horizontal" method="post">
+ <div class="row">
+ <!-- Text field -->
+ <div class="col-md-8">
+ <input class="form-control" type="text" name="textarea" value="">
+ </div>
+ <!-- Control buttons -->
+ <div class="col-md-4">
+ <button type="submit" class="btn btn-default">Submit</button>
+ <button type="button" class="btn btn-success" data-toggle="modal" data-target="#SettingsModal">Settings</button>
+ </div>
+ </div><!-- row -->
+</form>
+<br/>
+<!-- End side panel -->
|