-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.html
60 lines (50 loc) · 1.7 KB
/
Config.html
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
<html>
<body>
<h1>Choose the set for ClViTra Services</h1>
<form action="http://127.0.0.1:8083/adapter/postUserProfile" method="post">
<p>
Select a file : <input type="file" name="file" size="50" />
</p>
<input type="submit" value="Upload It" />
</form>
<!--
<form action="rest/ClViTra/config" method="post" enctype="multipart/form-data">
<p>
Username: <input type="text" name="user"><br>
Password: <input type="password" name="pwd">
</p>
<input type="submit" value="Login" />
</form>
-->
</body>
</html>
<form action="http://127.0.0.1:8083/adapter/postUserProfile" method="post" enctype="multipart/form-data" class="form-horizontal">
<div class="form-group">
<label for="location" class="col-sm-2 control-label">Location</label>
<div class="col-sm-10">
<input type="text" name="location" class="form-control" id="location"
placeholder="Enter your location">
</div>
</div>
<div class="form-group">
<label for="language" class="col-sm-2 control-label">Preferred Language</label>
<div class="col-sm-10">
<input type="text" name="language" class="form-control" id="language"
placeholder="Enter your preferred language">
</div>
</div>
<!--<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
</div>
</div>-->
<div class="form-group">
<div >
<button type="submit" class="btn btn-default">Save</button>
</div>
</div>
</form>