From 4b8e02f4b69ccb4fd3146983bc7570f6ae13bca0 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 4 Sep 2011 20:24:16 -0400 Subject: Add a textarea input to the normal template form stuff. --- src/views/Template.class.php | 6 ++++++ style.css | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/views/Template.class.php b/src/views/Template.class.php index 62b8ba6..187e65b 100644 --- a/src/views/Template.class.php +++ b/src/views/Template.class.php @@ -226,6 +226,12 @@ class Template { $tag = ($lock?"readonly='readonly' ":''); return ""; } + public function inputTextArea($id, $label, $hint='', $default='', $lock=FALSE) { + $value = htmlentities($default); + $tag = ($lock?"readonly='readonly' ":''); + return $this->input($id, $label, $hint, + ""); + } public function inputText($id, $label, $hint='', $default='', $lock=FALSE) { return $this->input($id, $label, $hint, diff --git a/style.css b/style.css index 2c687fc..ed48f4e 100644 --- a/style.css +++ b/style.css @@ -25,7 +25,8 @@ body { div.main form fieldset li label { width: 25%; float: left; } - div.main form fieldset li input { + div.main form fieldset li input, + div.main form fieldset li textarea { width: 30%; float: left; } div.main form fieldset li p.form_data { @@ -49,4 +50,6 @@ table input { } .error { font-weight: bold; + color: red; } +.http404 { color: red; } \ No newline at end of file -- cgit v1.2.3