lauro1 commited on
Commit
38ba92a
Β·
1 Parent(s): 4eb6e09

fix error messages

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,10 +7,10 @@ bullets = "<ul><li style='color: white;'>βœ… Connection verified by <a style='co
7
  token_info = "<p style='color: white;'> Find out more about the MAA attesation token <a style='color: #f0ba2d;', href='https://blindbox.mithrilsecurity.io/en/latest/docs/security/attestation/#maa-attestation-token'>here!</a>"
8
  def run_query( server, prompt):
9
  if server == "Non-confidential VM server":
10
- return ("β›” Error: you can only connect to an application running on a Confidential VM")
11
  POLICY = "./cce_policy.txt"
12
  if prompt == None:
13
- return ("β›” Error: please provide input code")
14
  message = "\n\nβœ… Secure query succesful"
15
  message2 = "βœ… Attestation validated\n"
16
  try:
 
7
  token_info = "<p style='color: white;'> Find out more about the MAA attesation token <a style='color: #f0ba2d;', href='https://blindbox.mithrilsecurity.io/en/latest/docs/security/attestation/#maa-attestation-token'>here!</a>"
8
  def run_query( server, prompt):
9
  if server == "Non-confidential VM server":
10
+ return (["β›” Error: you can only connect to an application running on a Confidential VM", "β›” Error: attesation failed"])
11
  POLICY = "./cce_policy.txt"
12
  if prompt == None:
13
+ return (["β›” Error: please provide input code", "β›” Error: please provide input code"])
14
  message = "\n\nβœ… Secure query succesful"
15
  message2 = "βœ… Attestation validated\n"
16
  try: