add¸logo
parent
7497efbf9b
commit
245f9ba791
|
@ -13,6 +13,7 @@ WORKDIR /var/www
|
|||
RUN mkdir -p /var/www/html
|
||||
RUN rm -rf /var/www/html/*
|
||||
RUN ln -s /var/www/src/index.php /var/www/html/index.php
|
||||
ADD logo.png /var/www/html/logo.png
|
||||
RUN mkdir queue
|
||||
RUN git clone https://git.c3re.de/dirk/AuerNameTag.git
|
||||
ADD supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
||||
|
|
|
@ -56,6 +56,7 @@ if(isset($_GET['jobid'])){
|
|||
<meta http-equiv="refresh" content="1; url='/?jobid=$jobId&download=1'">
|
||||
</head>
|
||||
<body>
|
||||
<img src="/logo.png" alt="c3RE Logo" style="height: 200px "/>
|
||||
Your job $jobId is Finished.
|
||||
|
||||
<a href="/">Back</a>
|
||||
|
@ -79,6 +80,7 @@ EOT;
|
|||
<meta http-equiv="refresh" content="1">
|
||||
</head>
|
||||
<body>
|
||||
<img src="/logo.png" alt="c3RE Logo" style="height: 200px "/>
|
||||
Your job $jobId is $myPositionInQueue in the queue.
|
||||
</body>
|
||||
</html>
|
||||
|
@ -100,9 +102,11 @@ switch($_GET['err']){
|
|||
<title>c3RE AuerBoxTag Generator</title>
|
||||
</head>
|
||||
<body>
|
||||
<img src="/logo.png" alt="c3RE Logo" style="height: 200px "/>
|
||||
<h1>c3RE AuerBoxTag Generator</h1>
|
||||
<div style="color:red"><?php echo $err; ?></div>
|
||||
<form method="post" action="/">
|
||||
|
||||
<textarea name="tags" rows="10" cols="30" placeholder="one tag per line please"></textarea>
|
||||
<br>
|
||||
<br>
|
||||
|
|
Loading…
Reference in New Issue