SFE: Rebrand Self-Service to Portal (#7662)
This commit is contained in:
parent
686920024a
commit
9e286918f8
|
@ -1,7 +1,7 @@
|
|||
{{ template "header" }}
|
||||
|
||||
<div class="section">
|
||||
<h1>Invalid self-service URL</h1>
|
||||
<h1>Invalid Portal URL</h1>
|
||||
<p>
|
||||
If you got here by visiting a URL found in your ACME client logs, please
|
||||
carefully check that you copied the URL correctly.
|
||||
|
|
|
@ -75,7 +75,7 @@ func TestIndexPath(t *testing.T) {
|
|||
})
|
||||
|
||||
test.AssertEquals(t, responseWriter.Code, http.StatusOK)
|
||||
test.AssertContains(t, responseWriter.Body.String(), "<title>Let's Encrypt - Self-Service Portal</title>")
|
||||
test.AssertContains(t, responseWriter.Body.String(), "<title>Let's Encrypt - Portal</title>")
|
||||
}
|
||||
|
||||
func TestBuildIDPath(t *testing.T) {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Let's Encrypt - Self-Service Portal</title>
|
||||
<title>Let's Encrypt - Portal</title>
|
||||
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
||||
<style>
|
||||
* {
|
||||
|
|
|
@ -2327,7 +2327,7 @@ func (wfe *WebFrontEndImpl) NewOrder(
|
|||
if len(pausedValues) > 0 {
|
||||
jwt, err := unpause.GenerateJWT(wfe.unpauseSigner, acct.ID, pausedValues, wfe.unpauseJWTLifetime, wfe.clk)
|
||||
if err != nil {
|
||||
wfe.sendError(response, logEvent, probs.ServerInternal("Error generating JWT for self-service unpause"), err)
|
||||
wfe.sendError(response, logEvent, probs.ServerInternal("Error generating JWT for unpause portal"), err)
|
||||
}
|
||||
msg := fmt.Sprintf(
|
||||
"Your account is temporarily prevented from requesting certificates for %s and possibly others. Please visit: %s",
|
||||
|
|
Loading…
Reference in New Issue