Skip to content

Commit c01156e

Browse files
committed
More refactor in content and source files
1 parent 7b8e1b7 commit c01156e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

frontend/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<link rel="shortcut icon" sizes="16x16 32x32 48x48 64x64 128x128 256x256" href="static/assets/favicon.ico" type="image/x-icon" />
7-
<title>MSF Panic Button</title>
7+
<title>MSF NixOS Server Lock Button</title>
88
<script src="static/generated/Main.js"></script>
99
</head>
1010
<body>

frontend/src/Content.elm

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ No data will be lost, but the data will not be readable anymore.
3838
You can safely try out this procedure by selecting "Test mode".
3939
In test mode, everything will look as if we are locking the servers during
4040
a real emergency situation, but we will not actually lock any servers.
41-
This allows you to try out the panic button and become familiar with
41+
This allows you to try out the nixos server lock button and become familiar with
4242
its functioning, without disrupting any services.
4343
A bit like an evacuation exercise.
4444
"""

frontend/src/Main.elm

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ main =
7070
{ init = init
7171
, update = update
7272
, subscriptions = subscriptions
73-
, view = \model -> { title = "Panic Button", body = [ view model ] }
73+
, view = \model -> { title = "Server Lock Button", body = [ view model ] }
7474
}
7575

7676

@@ -605,7 +605,7 @@ viewElement model =
605605
, Font.center
606606
]
607607
[ nonBreakingText [ "MSF", "server " ]
608-
, el [ Font.color red ] <| nonBreakingText [ "panic", "button" ]
608+
, el [ Font.color red ] <| nonBreakingText [ "server lock", "button" ]
609609
]
610610

611611
mainElement =

0 commit comments

Comments
 (0)