Added Files

This commit is contained in:
Joachim Hummel
2020-07-22 14:13:09 +02:00
parent 200cc84109
commit ff1789b3e3
12 changed files with 156 additions and 0 deletions

25
templates/layout.html Executable file
View File

@ -0,0 +1,25 @@
<html>
<head>
<title>AWS CodeBuild-Jenkins-CodeDeploy</title>
<style>
body {
text-align: center;
}
h1 {
font-weight: bold;
color: #ff9900;
font-size: 2.5em;
}
</style>
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>

13
templates/test.html Executable file
View File

@ -0,0 +1,13 @@
{% extends "layout.html" %}
{% block body %}
<div class="block1">
<h1 style="text-align: center;">Congratulations!!</h1>
<h1>You have successfully deployed your web application using automated CI/CD.</h1>
<BR>
<h2 style="text-align: center;">Jenkins - AWS CodeBuild - AWS CodeDeploy</h2>
&nbsp;<img style="display: block; margin-left: auto; margin-right: auto;" src="https://a0.awsstatic.com/libra-css/images/logos/aws_logo_smile_1200x630.png"
width="527" height="277" />
</div>
<p>{% endblock %}</p>