-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
149 lines (111 loc) · 6.59 KB
/
index.html
File metadata and controls
149 lines (111 loc) · 6.59 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!Doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.1/css/fontawesome.min.css" integrity="sha384-QYIZto+st3yW+o8+5OHfT6S482Zsvz2WfOzpFSXMF9zqeLcFV0/wlZpMtyFcZALm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Ysabeau+SC&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="container md-12">
<div class="card border-info">
<div class="card-header"><h2>Ejemplo de formulario</h2>
</div>
<div class="container md-12">
<div class="alert alert-info" role="alert">
Es obligatorio rellenar todos los campos
</div>
<form>
<card>
<div class="form-row md-12">
<div class="form-group col-md-4">
<label for="creditcard">Número de tarjeta</label>
<input type="text" class="form-control" id="creditcard" placeholder="XXXXXXXXXXXXXX">
</div>
<div class="form-group col-md-3">
<label for="CVC">CVC</label>
<input type="text" class="form-control" id="CVC" placeholder="0000">
</div>
<div class="form-group col-md-3">
<label for="telefono">Número de teléfono</label>
<div class="form-goup d-flex">
<div class="form-group mr-2"><i class="fa-solid fa-phone" style="color: #000000;"></i></div>
<input type="tel" class="form-control w-30" name="phone">
</div>
</div>
</div>
<div class="form-row md-12 d-flex">
<div class="form-group col-md-6">
<label for=fname>Nombre</label>
<input type="text" class="form-control" id="fname">
</div>
<div class="form-group col-md-6">
<label for=lname>Email</label>
<input type="email" class="form-control" id="correo">
</div>
</div>
<div class="form-row md-12 d-flex">
<div class="form-group col-md-4 flex-column">
<label for=cityplace>Ciudad</label>
<input type="text" class="form-control" id="cityplace">
</div>
<div class="form-group flex-column col-md-4">
<label for=stplace>Provincia</label>
<select id="inputState" class="form-control">
<option selected>Choose...</option>
<option>Madrid</option>
<option>Lugo</option>
<option>Soria</option>
<option>Girona</option>
<option>Albacete</option>
<option>Granada</option>
</select>
</div>
<div class="form-group col-md-4 flex-column">
<div class="d-flex align-items-center">
<label for="creditcard">We accept:</label>
</div>
<div class="acceptcards d-flex">
<input type="radio" name="creditcard" value="mastercard" />
<label for="mastercad"><i class="fa-brands fa-cc-mastercard"></i></label>
<input type="radio" name="creditcard" value="visa" />
<label for="visa"></label><i class="fa-brands fa-cc-visa"></i>"
<input type="radio" name="creditcard value="dinerscard" />
<label for="dinerscard"><i class="fa-brands fa-cc-diners-club"></i></label>
<input type="radio" name="creditcard" value="americanexpress" />
<label for=" americanexpress"><i class="fa-brands fa-cc-amex"></i></label>
</div>
</div>
<div class="form-group col-md-5">
<label for=write>Message</label>
<input type="textarea" class="form-control" id="message">
<span id="notes">Add any notes here</span>
</div>
<div class="form-group col-md-2">
<label for=fecha>Fecha</label>
<input type="date" class="form-control" id="fecha">
</div>
<div class="form-group col-md-3">
<label for="formFile" class="form-label">Adjuntar archivo</label>
<input class="form-control" type="file" id="formFile">
</div>
</div>
</div>
<div class="card-footer text-right">
<button type="submit" class="btn btn-primary">Send</button>
<button type="submit" class="btn btn-secondary">cancel</button>
</div>
</div>
</div>
</form>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.7/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>