@@ -9,7 +9,6 @@ Create a new site license.
9
9
import { Form , Input } from "antd" ;
10
10
import { isEmpty } from "lodash" ;
11
11
import { useEffect , useRef , useState } from "react" ;
12
-
13
12
import { Icon } from "@cocalc/frontend/components/icon" ;
14
13
import { get_local_storage } from "@cocalc/frontend/misc/local-storage" ;
15
14
import { CostInputPeriod } from "@cocalc/util/licenses/purchase/types" ;
@@ -26,7 +25,6 @@ import { AddBox } from "./add-box";
26
25
import { ApplyLicenseToProject } from "./apply-license-to-project" ;
27
26
import { InfoBar } from "./cost-info-bar" ;
28
27
import { MemberHostingAndIdleTimeout } from "./member-idletime" ;
29
- import PaygInfo from "./payg-info" ;
30
28
import { QuotaConfig } from "./quota-config" ;
31
29
import { PRESETS , PRESET_MATCH_FIELDS , Presets } from "./quota-config-presets" ;
32
30
import { decodeFormValues , encodeFormValues } from "./quota-query-params" ;
@@ -75,45 +73,37 @@ export default function SiteLicense(props: Props) {
75
73
< Title level = { 3 } ref = { headerRef } >
76
74
< Icon name = { "key" } style = { { marginRight : "5px" } } /> { " " }
77
75
{ router . query . id != null
78
- ? "Edit Site License in Shopping Cart"
76
+ ? "Edit License in Shopping Cart"
79
77
: "Buy a License" }
80
78
</ Title >
81
79
{ router . query . id == null && (
82
- < >
83
- < Paragraph >
80
+ < div >
81
+ < Paragraph style = { { fontSize : "12pt" } } >
84
82
< A href = "https://doc.cocalc.com/licenses.html" >
85
- < SiteName /> site licenses
83
+ < SiteName /> licenses
86
84
</ A > { " " }
87
85
allow you to upgrade any number of projects to run more quickly,
88
- have network access, more disk space, memory, or run on a dedicated
89
- virtual machine. Licenses cover a wide range of use cases, ranging
90
- from a single hobbyist project to thousands of simultaneous users
91
- across a college campus.
86
+ have network access, more disk space and memory. Licenses cover a
87
+ wide range of use cases, ranging from a single hobbyist project to
88
+ thousands of simultaneous users across a large organization.
92
89
</ Paragraph >
93
90
94
- < Paragraph >
91
+ < Paragraph style = { { fontSize : "12pt" } } >
95
92
Create a license using the form below then add it to your{ " " }
96
93
< A href = "/store/cart" > shopping cart</ A > . If you aren't sure exactly
97
- what to buy, you can always edit your licenses later, including
98
- changing dates, the run limit, idle timeout, and any other
99
- configuration. Subscriptions are also very flexible and can be{ " " }
94
+ what to buy, you can always edit your licenses later. Subscriptions
95
+ are also flexible and can be{ " " }
100
96
< A
101
97
href = "https://doc.cocalc.com/account/purchases.html#recent-updates-to-subscriptions"
102
98
external
103
99
>
104
- edited or canceled at any time for a prorated refund .{ " " }
100
+ edited at any time.{ " " }
105
101
</ A >
106
- </ Paragraph >
107
-
108
- < Paragraph >
109
- < PaygInfo what = "a license" />
110
- </ Paragraph >
111
- < Paragraph >
112
102
It is also possible to{ " " }
113
103
< A href = "https://doc.cocalc.com/vouchers.html" > create vouchers</ A > { " " }
114
104
for resale or distribution.
115
105
</ Paragraph >
116
- </ >
106
+ </ div >
117
107
) }
118
108
< CreateSiteLicense
119
109
showInfoBar = { scrollY > offsetHeader }
0 commit comments