-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomain-bulkchange-step-2.php
120 lines (120 loc) · 6.63 KB
/
domain-bulkchange-step-2.php
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
120
<!DOCTYPE html>
<html lang="et">
<head>
<?php require_once("components/head.php") ?>
<title>EIS | Domeeni massmuudatus</title>
</head>
<body>
<?php require_once("components/menu-mobile.php") ?>
<div class="layout">
<?php require_once("components/header.php") ?>
<div class="layout--main">
<div class="layout--hero">
<h1>Domeeni massmuutus</h1>
<a href="#" class="back-link">
<i class="fas fa-arrow-left"></i>
<span>Tagasi</span>
</a>
</div>
<div class="page page--domains-bulkchange">
<div class="page--header">
<div class="steps wrapper">
<div class="row center-xs">
<div class="col-md-2 col-xs-4">
<div class="steps--item steps--item__active">
<i class="fas fa-pencil-alt"></i>
<p>Vali muudatus</p>
</div>
</div>
<div class="col-md-2 col-xs-4">
<div class="steps--item steps--item__active">
<i class="fas fa-list"></i>
<p>Vali domeenid</p>
</div>
</div>
<div class="col-md-2 col-xs-4">
<div class="steps--item">
<i class="fas fa-check"></i>
<p>Teosta muudatus</p>
</div>
</div>
</div>
</div>
</div>
<div class="wrapper">
<div class="row center-xs">
<div class="col-md-4 col-sm-8 col-xs-12">
<div class="paper paper__light">
<form action="domain-bulkchange-step-3.php" class="form">
<div class="form--row">
<label for="bulkchange-type" class="form--label">Vali muudatus</label>
<div class="form--input">
<select name="bulkchange-type" id="bulkchange-type">
<option value="">Vali</option>
<option value="registrar-change">Registripidaja vahetus</option>
<option value="technical-contact-change" selected>Tehnilise kontakti vahetus</option>
</select>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="page--block">
<div class="wrapper">
<div class="page--block--header center">
<h2>Leia domeenid, mida soovid muuta</h2>
</div>
<form action="domain-bulkchange-step-3.php" class="form form--filters open">
<div class="row bottom-sm">
<div class="col-sm col-xs-12">
<div class="row">
<div class="col-md-3 col-sm-6 col-xs-12">
<label for="technical-contact" class="form--label">Tehniline kontakt</label>
<div class="form--field">
<div class="form--input small">
<input type="text" name="technical-contact" id="technical-contact" class="input" placeholder="Otsi tehnilist kontakti">
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<label for="registrar" class="form--label">Registreerija</label>
<div class="form--field">
<div class="form--input small">
<input type="text" name="registrar" id="registrar" class="input" placeholder="Otsi registreerijat">
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<label for="server" class="form--label">Nimeserver</label>
<div class="form--field">
<div class="form--input small">
<input type="text" name="server" id="server" class="input" placeholder="Otsi nimeserverit">
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<label for="ident-code" class="form--label">Isiku kood</label>
<div class="form--field">
<div class="form--input small">
<input type="text" name="ident-code" id="ident-code" class="input" placeholder="Isikukood">
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-auto col-xs-12">
<button class="button button--primary small">Otsi</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<?php require_once("components/footer.php") ?>
</div>
<script src="dist/app.js"></script>
</body>
</html>