added svcapi ui and camunda code
[it/otf.git] / otf-frontend / client / src / app / layout / onboarding / onboarding.component.pug
1 //-  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
2 //-                                                                             #\r
3 //-  Licensed under the Apache License, Version 2.0 (the "License");            #\r
4 //-  you may not use this file except in compliance with the License.           #\r
5 //-  You may obtain a copy of the License at                                    #\r
6 //-                                                                             #\r
7 //-      http://www.apache.org/licenses/LICENSE-2.0                             #\r
8 //-                                                                             #\r
9 //-  Unless required by applicable law or agreed to in writing, software        #\r
10 //-  distributed under the License is distributed on an "AS IS" BASIS,          #\r
11 //-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
12 //-  See the License for the specific language governing permissions and        #\r
13 //-  limitations under the License.                                             #\r
14 //- #############################################################################\r
15 \r
16 \r
17 router-outlet\r
18 //div([@routerTransition])\r
19   app-page-header([heading]="'Onboarding'", [icon]="'fa-edit'")\r
20   .row\r
21 \r
22     .col-lg-6\r
23   \r
24       .card.mb-12\r
25         .card-header\r
26           | Virtual Test Heads\r
27         .card-body\r
28           .list-group\r
29             a.list-group-item.list-group-item-action(href="#",*ngFor="let vth of vth_list")\r
30               b {{ vth.test_head_id }}\r
31               p {{ vth.description }}\r
32               a(href="{{ vth.url_path }}") {{ vth.url_path }}\r
33 \r
34     .col-lg-6\r
35 \r
36       .card.bg-light.mb-12\r
37         .card-header\r
38           | New Virtual Test Head\r
39         .card-body\r
40           form(role='form')\r
41             fieldset.form-group\r
42               label Test Head ID\r
43               input.form-control(type="text", )\r
44               p\r
45             \r
46               label Test Head Name\r
47               input.form-control(type="text", )\r
48               p\r
49 \r
50               label Description\r
51               input.form-control(type="text",)\r
52               p\r
53 \r
54               label Test Head Type\r
55               select.form-control()\r
56                 option Proxy\r
57                 option Regular\r
58                 option Script\r
59                 option Adapter\r
60               p\r
61               \r
62               label Implementation Language\r
63               select.form-control()\r
64                 option Java\r
65                 option Python\r
66                 option Javascript/NodeJS \r
67               p\r
68               \r
69               label Base URL\r
70               input.form-control(type="url")\r
71               p\r
72 \r
73               label Request Method\r
74               input.form-control(type="url")\r
75               p\r
76 \r
77               label Creator\r
78               input.form-control(type="text")\r
79               p\r
80 \r
81               button.btn.btn-primary((click)='next($event)') Submit \r
82 \r
83  <router-outlet></router-outlet>\r