-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpage.html
102 lines (99 loc) · 4.2 KB
/
webpage.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/webpage.css" rel="stylesheet">
<title>Learning bootstrap</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-2">
<img src="img/ifip_logo.png" width="222px" height="119px">
</div>
<div class="col-md-9 col-md-offset-1">
<h2 class="text-center">International Federation for Information Processing</h2>
<hr>
<h1 class="text-center">IFIP Fellow - Nomination Form</h3>
</div>
</div>
<div class="row">
<form>
<div class="panel panel-warning">
<div class="panel-heading">
<h3>Nominee</h3>
</div>
<div class="panel-body">
<div class="row">
<div class="form-group col-sm-4">
<label class="control-label">Title</label>
<input class="form-control">
</div>
<div class="form-group col-sm-4">
<label class="control-label">First name + middle name</label>
<input class="form-control">
</div>
<div class="form-group col-sm-4">
<label>Family name</label>
<input class="form-control">
</div>
</div>
<div class="row">
<div class="form-group col-sm-6">
<label>Email address</label>
<input class="form-control">
</div>
<div class="form-group col-sm-6">
<label>IFIP body/bodies</label>
<input class="form-control">
</div>
</div>
<div class="form-group">
<label>Affiliation</label>
<input class="form-control">
</div>
<div class="form-group">
<label>Postal address the certificate is to be sent to</label>
<input class="form-control">
</div>
</div>
</div>
<div class="panel panel-warning">
<div class="panel-heading">
<h3>Proposed citations</h2>
</div>
<div class="panel-body">
<textarea class="form-control"></textarea>
</div>
</div>
<div class="panel panel-warning">
<div class="panel-heading">
<h3>Main individual contribution</h2>
</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-4">
<label>Contribution category</label>
<input class="form-control">
</div>
</div>
<div class="row">
<div class="col-sm-12">
<label>Description of the contribution</label>
<input class="form-control">
</div>
</div>
</div>
</div>
<button type="submit" class="btn btn-lg">Submit</button>
</form>
</div>
</div>
<script src="js/jquery-3.2.1.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/webpage.js"></script>
</body>
</html>