-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreateAccount.html
119 lines (102 loc) · 4.62 KB
/
createAccount.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!doctype html>
<html class="no-js" lang="fr">
<head>
<meta charset="utf-8">
<title>Responsable Banque</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<!-- nav -->
<nav class="navbar navbar-expand-lg navbar-light bg-secondary">
<div class="container-fluid">
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Accueil</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Actualités</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Statistiques</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Opérations
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li><a class="dropdown-item" href="#">Créer un compte</a></li>
<li><a class="dropdown-item" href="#">Dépôt et Rettait</a></li>
<li><a class="dropdown-item" href="#">Virement</a></li>
<li><a class="dropdown-item" href="#">Clôturer un compte</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- header -->
<div class="card text-center">
<div class="card-body">
<h1 class="card-title">Responsable Banque</h1>
<p class="card-text">Notre responsabilité est de vous acompagner avec confiance dans vos projets</p>
</div>
</div>
<main class="container my-5 ">
<h1 class="text-center my-5">Créer un compte</h1>
<div class="input-group my-3">
<span class="input-group-text">Nom et Prénom</span>
<input type="text" aria-label="First name" class="form-control">
<input type="text" aria-label="Last name" class="form-control">
</div>
<div class="my-3">
<select class="form-select" aria-label="Default select example">
<option selected>Sélectionner un compte</option>
<option value="1">Compte courant</option>
<option value="2">Compte Livret A</option>
<option value="3">Compte LEP</option>
</select>
</div>
<div class="input-group mb-3">
<input type="text" class="form-control" aria-label="Dollar amount (with dot and two decimal places)">
<span class="input-group-text">Somme en £</span>
<span class="input-group-text">0.00</span>
</div>
<div class="col-12 my-3 text-center">
<button class="btn btn-primary" type="submit">Créer</button>
</div>
</form>
</main>
<footer class="bg-dark text-white text-center py-5">
<div class="container">
<p>Mentions légales</p>
</div>
</footer>
<!-- Add your site or application content here -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.1/dist/umd/popper.min.js" integrity="sha384-SR1sx49pcuLnqZUnnPwx6FCym0wLsk5JZuNx2bPPENzswTNFaQU1RDvt3wT4gWFG" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.min.js" integrity="sha384-j0CNLUeiqtyaRmlzUHCPZ+Gy5fQu0dQ6eZ/xAww941Ai1SxSY+0EQqNXNE6DZiVc" crossorigin="anonymous"></script>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script src="js/layer.js"></script>
<script src="js/news.js"></script>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set', 'transport', 'beacon'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script>
</body>
</html>