diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-01-14 10:36:45 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-01-14 10:36:45 +0100 |
commit | 69573c6afe8afcbd75304dd0cd2f12d341f4195e (patch) | |
tree | b029394bb034e0ae3be061812bfac513de96640e /view/tpl/follow.tpl | |
parent | e500a08f152d641f60c7146c6a290042bdd37a73 (diff) | |
download | volse-hubzilla-69573c6afe8afcbd75304dd0cd2f12d341f4195e.tar.gz volse-hubzilla-69573c6afe8afcbd75304dd0cd2f12d341f4195e.tar.bz2 volse-hubzilla-69573c6afe8afcbd75304dd0cd2f12d341f4195e.zip |
some template work on follow widget
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> |