diff options
author | friendica <info@friendica.com> | 2013-08-21 20:05:55 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-21 20:05:55 -0700 |
commit | 6cea04eb440c2bb08bcb81ae13749c08d09b755c (patch) | |
tree | 1dc49fbb3b0e23afb7a3709fc54383f5b7c39fb8 /view | |
parent | 5083aa3cbd9434b7ec63cf5bbbc2122e3da49696 (diff) | |
download | volse-hubzilla-6cea04eb440c2bb08bcb81ae13749c08d09b755c.tar.gz volse-hubzilla-6cea04eb440c2bb08bcb81ae13749c08d09b755c.tar.bz2 volse-hubzilla-6cea04eb440c2bb08bcb81ae13749c08d09b755c.zip |
progress on generic sellpage - is not yet linked from existing connect buttons and editing has not been completed
Diffstat (limited to 'view')
-rw-r--r-- | view/css/mod_connect.css | 3 | ||||
-rw-r--r-- | view/tpl/sellpage_submit.tpl | 3 | ||||
-rw-r--r-- | view/tpl/sellpage_view.tpl | 9 |
3 files changed, 15 insertions, 0 deletions
diff --git a/view/css/mod_connect.css b/view/css/mod_connect.css new file mode 100644 index 000000000..43de7d256 --- /dev/null +++ b/view/css/mod_connect.css @@ -0,0 +1,3 @@ +.sellpage-final { + margin-top: 25px; +}
\ No newline at end of file diff --git a/view/tpl/sellpage_submit.tpl b/view/tpl/sellpage_submit.tpl new file mode 100644 index 000000000..2bd735ea4 --- /dev/null +++ b/view/tpl/sellpage_submit.tpl @@ -0,0 +1,3 @@ +<form id="sellpage-submit" action="connect/{{$address}}" method="post"> +<input type="submit" name="submit" value="{{$continue}}" /> +</form>
\ No newline at end of file diff --git a/view/tpl/sellpage_view.tpl b/view/tpl/sellpage_view.tpl new file mode 100644 index 000000000..414445039 --- /dev/null +++ b/view/tpl/sellpage_view.tpl @@ -0,0 +1,9 @@ +<h1>{{$header}}</h1> + +<div class="descriptive-text">{{$desc}}</div> + +<div class="sellpage-body">{{$text}}</div> + +<div class="sellpage-final">{{$desc2}}</div> + +{{$submit}} |