-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
54 lines (54 loc) · 1.65 KB
/
team.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
<!Doctype html>
<head>
<title>team_info</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="page-header">
<div class="row">
<img class="navbar-brand" src="logo.png" alt="logo" width="25%" height="25%">
</div>
</div>
<div class="container">
<form action="ICO_contact.html">
<div class="form-group">
<h2>Team</h2>
<div class="form-group">
<label for="Mname">Name:</label>
<input type="text" class="form-control" id="Mname">
</div>
<div class="form-group">
<label for="Role">Role:</label>
<input type="text" class="form-control" id="Role">
</div>
<button class="btn btn-primary">ADD More</button><br/>
</div>
<div class="form-group">
<h2>Social Media Links</h2>
<div class="form-row">
<div class="form-group col-md-6">
<label for="Link">LinkedIn:</label>
<input type="text" class="form-control" id="Link"/>
</div>
<div class="form-group col-md-6">
<label for="sky">Skype:</label>
<input type="text" class="form-control" id="sky"/>
</div>
<div class="form-group col-md-6">
<label for="Tele">Telegram:</label>
<input type="text" class="form-control" id="Tele"/>
</div>
<div class="form-group col-md-6">
<label for="git">Github:</label>
<input type="text" class="form-control" id="git"/>
</div>
</div>
<button class="btn btn-primary">ADD More</button><br/>
<center><button class="btn btn-success btn-lg">Next</button></center>
</form>
</div>
</body>
</html>