error.go 316 B

12345678910
  1. package auth
  2. // == define error HTML here ==
  3. const oauthNotConfigured = `<!DOCTYPE html><html>
  4. <body>
  5. <h3>Your Netmaker server does not have OAuth configured.</h3>
  6. <p>Please visit the docs <a href="https://docs.netmaker.org/oauth.html" target="_blank" rel="noopener">here</a> to learn how to.</p>
  7. </body>
  8. </html>
  9. `