blob: a029aa5b92c55e8bcb89edaf475a4746afaf1761 (
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
|
<!--
Copyright (c) 2019 opnfv.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Apache License, Version 2.0
which accompanies this distribution, and is available at
http://www.apache.org/licenses/LICENSE-2.0
-->
<div>
<h4>Enter user name or email</h4>
<input type="text" ng-model="ctrl.userName">
<div style="text-align: center; margin-top: 20px;">
<button class="btn btn-default" ng-disabled="ctrl.userName==null || ctrl.userName==''"
ng-click="ctrl.addSharedUser(ctrl.tempResult, ctrl.userName)">Commit</button>
</div>
</div>
<style>
input {
border-radius: 10px;
border: 1px solid #eeeeee;
width: 100%;
}
</style>
|