aboutsummaryrefslogtreecommitdiffstats
path: root/portal-common/src/main/webapp/framework/browser/templates/textarea.html
blob: 8c01e6dc7661ea72779aa57fe30d2916747c72a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!--

    Copyright 2016-2017, Huawei Technologies Co., Ltd.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

            http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.

-->

<h4>Text Area</h4>
<body>
<div name="myForm"  class="css-form" method="post">
    <div class="form-group row">
        <label for="fname" class="col-xs-2 col-form-label">Text</label>
        <div class="col-xs-10">
           <div id="fname"></div>

        </div>
    </div>

    <div class="form-group row">
        <label for="email" class="col-xs-2 col-form-label">Email</label>
        <div class="col-xs-10">
            <div id="email" ></div>
        </div>
    </div>
    <div class="form-group row">
        <label for="url" class="col-xs-2 col-form-label">URL</label>
        <div class="col-xs-10">
            <div id="url"></div>
        </div>
    </div>
    <div class="form-group row">
        <label for="password" class="col-xs-2 col-form-label">Password</label>
        <div class="col-xs-10">
            <div id="password"></div>
        </div>
    </div>
    <div class="form-group row">
        <label for="numeric" class="col-xs-2 col-form-label">Numeric</label>
        <div class="col-xs-10">
            <div id="numeric"></div>
        </div>
    </div>
    <div class="form-group row">
        <label for="dot" class="col-xs-2 col-form-label">Date and time</label>
        <div class="col-xs-10">
        <div id="dot"></div>
        </div>
    </div>
    <div class="form-group row">
        <label for="dateinput" class="col-xs-2 col-form-label">Date</label>
        <div class="col-xs-10">
            <div id="dateinput"></div>
        </div>
    </div>
    <div class="form-group row">
        <label for="monthinput" class="col-xs-2 col-form-label">Month</label>
        <div class="col-xs-10">
            <div id="monthinput"></div>
        </div>
    </div>
    <div class="form-group row">
        <label for="weekinput" class="col-xs-2 col-form-label">Week</label>
        <div class="col-xs-10">
            <div id="weekinput"></div>
        </div>
    </div>
    <div class="form-group row">
        <label for="timeinput" class="col-xs-2 col-form-label">Time</label>
        <div class="col-xs-10">
        <div id="timeinput"></div>
        </div>
    </div>
    <div class="form-group row">
        <label for="ipv4" class="col-xs-2 col-form-label">IPV4 Address</label>
        <div class="col-xs-10">
        <div id="ipv4"></div>
        </div>
    </div>
    <div class="form-group row">
        <label for="ipv6" class="col-xs-2 col-form-label">IPV6 Address</label>
        <div class="col-xs-10">
            <div id="ipv6"></div>
        </div>
    </div>


    <div class="form-group row">
        <label for="textarea" class="col-xs-2 col-form-label">Text Area</label>
        <div class="col-xs-10">
            <div id="textarea"></div>

        </div>
    </div>

    <div class="form-group row">
        <label for="note" class="col-xs-2 col-form-label">Note</label>
        <div class="col-xs-10">
            <div id="note">
            </div>

        </div>
    </div>

</div>
<div class="shortnoteHeader">ShortNote</div>
<div class="shortnoteText">{{toolTipData}}</div>
</body>