Revize b556270c
Přidáno uživatelem Jan Pašek před asi 4 roky(ů)
static/create_certificate.html | ||
---|---|---|
13 | 13 |
<div class="form-group"> |
14 | 14 |
<td><label for="CA">Certificate Authority:</label></td> |
15 | 15 |
<td class="pl-3"> |
16 |
<select name="CA" id="CA" class="form-control"> |
|
17 |
<option value="volvo">Self-Signed</option> |
|
18 |
<option value="#test-cert-id">Test</option> |
|
16 |
<select v-model="selectedCA" name="CA" id="CA" class="form-control"> |
|
17 |
<option value=null>Self-Signed</option> |
|
18 |
<option is="ca-select-item" |
|
19 |
v-for="ca in authorities" |
|
20 |
v-bind:ca="ca" |
|
21 |
v-bind:key="ca.id"></option> |
|
19 | 22 |
</select> |
20 | 23 |
</td> |
21 | 24 |
</div> |
... | ... | |
39 | 42 |
<div class="form-group"> |
40 | 43 |
<td><label for="issuer_CN">Common Name:</label></td> |
41 | 44 |
<td class="pl-3"> |
42 |
<input type="text" id="issuer_CN" name="issuer_CN" class="form-control" v-bind:value="selectedCA.CN" disabled> |
|
45 |
<input type="text" id="issuer_CN" name="issuer_CN" class="form-control" v-bind:value="selectedCAData.CN" disabled>
|
|
43 | 46 |
</td> |
44 | 47 |
</div> |
45 | 48 |
</tr> |
... | ... | |
47 | 50 |
<div class="form-group"> |
48 | 51 |
<td><label for="issuer_C">Country Code:</label></td> |
49 | 52 |
<td class="pl-3"> |
50 |
<input type="text" id="issuer_C" name="issuer_C" class="form-control" v-bind:value="selectedCA.C" disabled>
|
|
53 |
<input type="text" id="issuer_C" name="issuer_C" class="form-control" v-bind:value="selectedCAData.C" disabled>
|
|
51 | 54 |
</td> |
52 | 55 |
</div> |
53 | 56 |
</tr> |
... | ... | |
55 | 58 |
<div class="form-group"> |
56 | 59 |
<td><label for="issuer_L">Locality:</label></td> |
57 | 60 |
<td class="pl-3"> |
58 |
<input type="text" id="issuer_L" name="issuer_L" class="form-control" v-bind:value="selectedCA.L" disabled> |
|
61 |
<input type="text" id="issuer_L" name="issuer_L" class="form-control" v-bind:value="selectedCAData.L" disabled>
|
|
59 | 62 |
</td> |
60 | 63 |
</div> |
61 | 64 |
</tr> |
... | ... | |
63 | 66 |
<div class="form-group"> |
64 | 67 |
<td><label for="issuer_ST">Province/State:</label></td> |
65 | 68 |
<td class="pl-3"> |
66 |
<input type="text" id="issuer_ST" name="issuer_ST" class="form-control" v-bind:value="selectedCA.ST" disabled> |
|
69 |
<input type="text" id="issuer_ST" name="issuer_ST" class="form-control" v-bind:value="selectedCAData.ST" disabled>
|
|
67 | 70 |
</td> |
68 | 71 |
</div> |
69 | 72 |
</tr> |
... | ... | |
71 | 74 |
<div class="form-group"> |
72 | 75 |
<td><label for="issuer_O">Organization:</label></td> |
73 | 76 |
<td class="pl-3"> |
74 |
<input type="text" id="issuer_O" name="issuer_O" class="form-control" v-bind:value="selectedCA.O" disabled> |
|
77 |
<input type="text" id="issuer_O" name="issuer_O" class="form-control" v-bind:value="selectedCAData.O" disabled>
|
|
75 | 78 |
</td> |
76 | 79 |
</div> |
77 | 80 |
</tr> |
... | ... | |
79 | 82 |
<div class="form-group"> |
80 | 83 |
<td><label for="issuer_OU">Organization Unit:</label></td> |
81 | 84 |
<td class="pl-3"> |
82 |
<input type="text" id="issuer_OU" name="issuer_OU" class="form-control" v-bind:value="selectedCA.OU" disabled> |
|
85 |
<input type="text" id="issuer_OU" name="issuer_OU" class="form-control" v-bind:value="selectedCAData.OU" disabled>
|
|
83 | 86 |
</td> |
84 | 87 |
</div> |
85 | 88 |
</tr> |
... | ... | |
87 | 90 |
<div class="form-group"> |
88 | 91 |
<td><label for="issuer_emailAddress">Email:</label></td> |
89 | 92 |
<td class="pl-3"> |
90 |
<input type="email" id="issuer_emailAddress" name="issuer_emailAddress" class="form-control" v-bind:value="selectedCA.emailAddress" disabled> |
|
93 |
<input type="email" id="issuer_emailAddress" name="issuer_emailAddress" class="form-control" v-bind:value="selectedCAData.emailAddress" disabled>
|
|
91 | 94 |
</td> |
92 | 95 |
</div> |
93 | 96 |
</tr> |
Také k dispozici: Unified diff
Re #8475 - Create certificate, available CA selection