diff options
author | mrjive <mrjive@mrjive.it> | 2016-01-14 18:07:56 +0100 |
---|---|---|
committer | mrjive <mrjive@mrjive.it> | 2016-01-14 18:07:56 +0100 |
commit | 2696deb2a18ba06593657a2317176baa26821708 (patch) | |
tree | 6db62ef956bf06b7bc8ee7f31536b01d66ecc8e0 /view/tpl/follow.tpl | |
parent | 5c937c5642e87750b55e15c9d9c1b863e5d5cfc1 (diff) | |
parent | 9f9fdc1434b7283171f8d843f225228cdb322115 (diff) | |
download | volse-hubzilla-2696deb2a18ba06593657a2317176baa26821708.tar.gz volse-hubzilla-2696deb2a18ba06593657a2317176baa26821708.tar.bz2 volse-hubzilla-2696deb2a18ba06593657a2317176baa26821708.zip |
Merge pull request #16 from redmatrix/master
updating from original codebase
Diffstat (limited to 'view/tpl/follow.tpl')
-rwxr-xr-x | view/tpl/follow.tpl | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/view/tpl/follow.tpl b/view/tpl/follow.tpl index 0c808b9a5..8c1f8d4ca 100755 --- a/view/tpl/follow.tpl +++ b/view/tpl/follow.tpl @@ -1,9 +1,14 @@ <div id="follow-sidebar" class="widget"> <h3>{{$connect}}</h3> - <div id="connect-desc">{{$desc}}</div> <form action="follow" method="post" /> - <input id="side-follow-url" type="text" name="url" title="{{$hint}}" /> - <input id="side-follow-submit" type="submit" name="submit" class="btn btn-default" value="{{$follow}}" /> + <div class="form-group"> + <div class="input-group"> + <input class="widget-input" type="text" name="url" title="{{$hint}}" placeholder="{{$desc}}" /> + <div class="input-group-btn"> + <button class="btn btn-default btn-sm" type="submit" name="submit" value="{{$follow}}"><i class="icon-plus"></i></button> + </div> + </div> + </div> </form> {{if $abook_usage_message}} <div class="usage-message" id="abook-usage-message">{{$abook_usage_message}}</div> |