Skip to content
Snippets Groups Projects
Commit 2d9547ba authored by Bob Mottram's avatar Bob Mottram
Browse files

format failed screen

parent 127d9f6f
No related branches found
No related tags found
No related merge requests found
......@@ -1005,10 +1005,10 @@ function backup_and_restore {
rm "$format_file"
check_backup_restore_processes $format_script
{ echo "if /usr/local/bin/${PROJECT_NAME}-format simple; then";
{ echo "if /usr/local/bin/${PROJECT_NAME}-format simple > $webadmin_install_dir/format.txt; then";
echo " cp $webadmin_install_dir/format_complete.html $webadmin_install_dir/format_progress.html";
echo 'else';
echo " cp $webadmin_install_dir/backup.html $webadmin_install_dir/format_progress.html";
echo " cp $webadmin_install_dir/format_failed.html $webadmin_install_dir/format_progress.html";
echo 'fi';
echo "chown www-data:www-data $webadmin_install_dir/format_progress.html";
echo '';
......
<!DOCTYPE html>
<html>
<head>
<style>
#headerpic {
width: 60%;
height: auto;
margin-right : auto;
margin-left : auto;
min-width : 220px;
}
.header {
text-align: center;
padding: 32px;
}
#iconpic {
width: 20%;
height: auto;
margin-right : auto;
margin-left : auto;
min-width : 120px;
}
.appurl {
color: grey;
font-size: 100%;
}
.appdesc {
color: black;
font-size: 65%;
}
button {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
font-size: 18px;
}
a {
text-decoration: none;
color: black;
}
button:hover, a:hover {
opacity: 0.7;
}
</style>
</head>
<body>
<div class="header">
<a href="backup.html"><img id="headerpic" class="img-responsive" src="images/logo.png"></a>
<h3>USB drive format has failed</h3>
<h4>See <a href="format.txt">diagnostics</a></h4>
<form action="backup.html">
<input type="submit" value="Go Back" />
</form>
</div>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment