31 lines
897 B
HTML
31 lines
897 B
HTML
<!DOCTYPE html>
|
|
<!-- See how this iframe must be used in ./example-integration.html -->
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="initial-scale=1">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<title>Simulateur d'embauche</title>
|
|
|
|
<link href='https://fonts.googleapis.com/css?family=Open+Sans:200,300,400,500,600,700' rel='stylesheet' type='text/css'>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div id="js" />
|
|
<script type="text/javascript">
|
|
var couleur = window.location.search
|
|
.substring(1) //get rid of "?" in querystring
|
|
.split('=')[1]
|
|
|
|
var scriptEl = document.createElement('script')
|
|
scriptEl.setAttribute('type', 'text/javascript')
|
|
scriptEl.setAttribute('src', 'dist/bundle.js')
|
|
scriptEl.setAttribute('couleur', '#' + couleur)
|
|
document.body.appendChild(scriptEl)
|
|
</script>
|
|
<script src="https://use.fontawesome.com/1da10bbdec.js"></script>
|
|
</body>
|
|
</html>
|