UI adaptation for supporting ONAP portal SDK
[validation.git] / ui / src / main / webapp / app / AECBlueprintValidationUI / NewSubmission / NewSubmissionTemplate.html
1 <!--
2 Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8        http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 -->
16
17 <div id="page-content" class="content" style="padding: 25px;">
18  <div>
19   <h1 class="heading-page">New Submission</h1>
20   <h2 class="heading-small">Submission form</h2>
21
22   <div>
23    <div class="form-row">
24     <label for="textinputID-3a">Select Blueprint: </label> <select
25      ng-model="selectedBlueprintName"
26      ng-init="selectedBlueprintName=blueprintNames[0]"
27      ng-change="selectedBluePrintNameChange()"
28      ng-options="n for n in blueprintNames">
29     </select>
30    </div>
31   </div>
32   <br>
33
34   <div>
35    <div class="form-row">
36     <label for="textinputID-3a">Select Blueprint Version: </label> <select
37      ng-model="selectedBlueprintVersion"
38      ng-change="selectedBluePrintVersionChange()"
39      ng-options="y for y in blueprintVersions">
40     </select>
41    </div>
42   </div>
43   <br>
44
45   <div>
46    <div class="form-row">
47     <label for="textinputID-3a">Select Blueprint Layer: </label> <select
48      ng-model="selectedBlueprintLayer"
49      ng-change="selectedBluePrintLayerChange()"
50      ng-options="l for l in blueprintLayers">
51     </select>
52    </div>
53   </div>
54   <br>
55
56
57   <div>
58    <div class="form-row">
59     <label for="textinputID-3a">Select Timeslot: </label> <select
60      ng-model="selectedDeclerativeTimeslot"
61      ng-options="v for v in declerativeTimeslots">
62     </select>
63    </div>
64   </div>
65   <br>
66
67   <div class="fn-ebz-container" style="position: relative; top: 25px;">
68    <button href="javascript:void(0)" id="addbtn" style="bottom: -17px;"
69     size="small" att-accessibility-click="13,32"
70     class="btn btn-alt btn-small" ng-click="submit();">Submit</button>
71   </div>
72  </div>
73 </div>